查看下划线后在这个小提琴上进行了测试。
arguments
当 slice不在原型链上时,这似乎是一种 hack 。
为什么它明显有效时不在原型链上arguments.
var slice = Array.prototype.slice;
function test () {
return slice.call(arguments,1);
// return arguments.slice(1)
}
var foo = test(1,2,3,4);
_.each(foo, function(val){
console.log(val)
});