12

考虑:

> function hello(what) {
.     what = "world";
.     return "Hello, " + arguments[0] + "!";
. }
> hello("shazow")
"Hello, world!"

为什么改变 的值会what改变 的值arguments[0]

4

1 回答 1

13

“为什么改变 的值会what改变 的值arguments[0]?”

因为这就是它的设计方式。形式参数直接映射到参数对象的索引。

那是除非您处于严格模式,并且您的环境支持它。然后更新一个不会影响另一个。

function hello(what) {
    "use strict"; // <-- run the code in strict mode
    what = "world";
    return "Hello, " + arguments[0] + "!";
}
hello("shazow"); // "Hello, shazow!"
于 2012-04-19T02:52:29.660 回答