从use strict看JS(二):函数传参模式与arguments
2017-04-13
阅读 4 分钟
4.2k系列 系列列表:从use strict看JS(一):this与箭头函数从use strict看JS(二):函数传参模式与arguments use strict 的 arguments 上一篇说到,use strict对arguments做了以下限定 arguments。不允许对arguments赋值。禁止使用arguments.callee。arguments不再追踪参数的变化 这是为什么呢?如果你明白下面两个例子就...