首页 > 编程语言 > 详细

JavaScript arguments你不知道的秘密

时间:2014-07-24 09:57:13      阅读:321      评论:0      收藏:0      [点我收藏+]
(function test(x){  
  x=10;  
  console.log(arguments[0], x);  //undefined, 10
})();

(function test(x){  
  x=10;  
  console.log(arguments[0]); // 10
})(1);

(function test(x){  
  x=10;  arguments[0]=2;
  console.log(x, arguments[0]);  //10 ,2
})();

(function test(x){  
  x=10;  arguments[0]=2;
  console.log(x, arguments[0]);  //2, 2
})(1);

(function test(x){  
  x=10;  arguments[0]=2;
  console.log(x, arguments[0]);  //2, 2
})(undefined);
 

 

由上面函数可得出结论,形参和arguments[i] 是引用关系,但是是在形参调用时有传参的前提下(传入undefined也算传入了参数)

 

(function test(x){  
  var x = 10;  
  console.log(arguments[0]);  // 10
})(1);

(function test(x,y){  
  var x = 10;  
  console.log(x,arguments[0]);  // 10 ,undefined
})();

上例可以看出 形参如果传值是不会因为在函数内定义同名变量而断开引用的

JavaScript arguments你不知道的秘密,布布扣,bubuko.com

JavaScript arguments你不知道的秘密

原文:http://www.cnblogs.com/feng524822/p/3864359.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!