码迷,mamicode.com
首页 > 其他好文 > 详细

arguments with parameter

时间:2017-06-06 15:45:49      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:highlight   pre   nts   with   argument   har   var   div   class   

var f =function(x) {
	console.log(x);
	console.log(arguments[0])

	console.log(‘-------------before delete-------------‘)
	x = 3;
	// arguments[0] = 3;
	// delete arguments[0];
	delete x;
	console.log(x);
	console.log(arguments[0])
}

f(2);

    

arguments with parameter

标签:highlight   pre   nts   with   argument   har   var   div   class   

原文地址:http://www.cnblogs.com/ax-null/p/6951727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!