考虑:
> function hello(what) {
. what = "world";
. return "Hello, " + arguments[0] + "!";
. }
> hello("shazow")
"Hello, world!"
为什么改变 的值会what
改变 的值arguments[0]
?
考虑:
> function hello(what) {
. what = "world";
. return "Hello, " + arguments[0] + "!";
. }
> hello("shazow")
"Hello, world!"
为什么改变 的值会what
改变 的值arguments[0]
?
“为什么改变 的值会
what
改变 的值arguments[0]
?”
因为这就是它的设计方式。形式参数直接映射到参数对象的索引。
那是除非您处于严格模式,并且您的环境支持它。然后更新一个不会影响另一个。
function hello(what) {
"use strict"; // <-- run the code in strict mode
what = "world";
return "Hello, " + arguments[0] + "!";
}
hello("shazow"); // "Hello, shazow!"