将arguments转为数组

Posted

tags:

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

function foo1(){var s=Array.prototype.slice.apply(arguments);console.log(arguments);console.log(s); console.log(s instanceof Array);}

或者

function foo1(){var s=Array.prototype.slice.call(arguments);console.log(arguments);console.log(s); console.log(s instanceof Array);}

 

以上是关于将arguments转为数组的主要内容,如果未能解决你的问题,请参考以下文章

将函数的实际参数转换成数组的方法,习惯用Array.prototype.slice.call(arguments)

arguments伪数组

arguments解析

arguments小结

javascript中什么是伪数组?如何将伪数组转为标准数组?

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