这是我正试图做的一个例子:
function destroyer(arr) { var removes = new Set(arguments); return arr.filter(function(item) { return !removes.has(item); }); } // remove items 2,3,5 from the passed in array var result = destroyer([3,5,1,2,2],5); log(result);
FYI,我知道这个代码有各种各样的解决方案,比如将参数对象复制到一个真实的数组或者使用rest参数.这个问题是关于参数对象在ES6中是否应该是可迭代的,可以在任何地方使用迭代.
解决方法
根据9.2.12 FunctionDeclarationInstantiation(func,argumentsList)部分,
If argumentsObjectNeeded is true,then
a) If strict is true or if simpleParameterList is false,then
==> i) Let ao be CreateUnmappedArgumentsObject(argumentsList).
b) Else,
==> i) NOTE mapped argument object is only provided for non-strict functions that don’t have a rest parameter,any parameter default value initializers,or any destructured parameters .
==> ii) Let ao be CreateMappedArgumentsObject(func,formals,argumentsList,env).
CreateMappedArgumentsObject
和CreateUnmappedArgumentsObject
都有
Perform DefinePropertyOrThrow(obj,@@iterator,PropertyDescriptor {[[Value]]:%ArrayProto_values%,[[Writable]]: true,[[Enumerable]]: false,[[Configurable]]: true}).
这意味着@@ iterator属性应该已经在arguments对象上实际定义了.