84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
Object.getOwnPropertyNames(Function.arguments).sort().forEach(function(val){ console.log(val); })
arguments应该有callee的属性,为什么我这样无法遍历出来这个属性呢,而且还会报错
学习是最好的投资!
Function.arguments
这是啥?
你要取函数的实参也不能这么写呀,都没传怎么取。
我觉得你可能是这个意思
Object.getOwnPropertyNames(function() { return arguments; }())//匿名函数自调用使能够使用函数内部的arguments特性,并将其返回 .sort() .forEach(function(val) { console.log(val); })
这是啥?
你要取函数的实参也不能这么写呀,都没传怎么取。
我觉得你可能是这个意思