JavaScript arguments你不知道的秘密

(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你不知道的秘密,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。