浅谈[].slice.call(arguments, 1)

Posted ofeliahan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了浅谈[].slice.call(arguments, 1)相关的知识,希望对你有一定的参考价值。

测试1 先打印下 arguments

var a = function(f){
console.log(arguments);
}

a(‘show‘, [12,3,4,55]);

 

结果:[‘show‘, Array[4]]

测试2

var a = function(f){
console.log([].slice.call(arguments, 1));
}

a(‘show‘, [12,3,4,55]);

 

结果:[Array[4]]
测试3

var a = function(f){
console.log(arguments.slice(1));
}

a(‘show‘, [12,3,4,55]); 

结果:报错!!! **arguments.slice is not a function(...)**
此时就心中产生了疑惑了,为啥在测试一中打印出来的arguments 是个数组的东西啊,为啥会提示没有slice这个方法呢?带着疑问我去请教下了队伍里的大牛,得到了下面的答案:

测试4

(function() {
console.log(arguments instanceof Array)
})();

结果:false
arguments 并非数组,只是访问单个参数的方式与访问数组元素的方式相同。因此在使用slice方法的时候,需要用类似[].slice.call(arguments, 1) 的这种方式去调用,至此,关于这条语句引发的思考也就此结束了

以上是关于浅谈[].slice.call(arguments, 1)的主要内容,如果未能解决你的问题,请参考以下文章

[].slice.call(arguments,1) 个人理解

[].slice.call(arguments)将arguments类数组转换为数组的的实现原理

Array.prototype.slice.call(arguments) 通俗法理解

理解Array.prototype.slice.call(arguments)

Array.prototype.slice.call(arguments)探究

[].slice.call(arguments,1)