Array.prototype.slice.call()为什么能将类数组转换为数组
Posted 黄先森
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Array.prototype.slice.call()为什么能将类数组转换为数组相关的知识,希望对你有一定的参考价值。
将类数组转换为数组的方法
- Array.prototype.slice.call(arguments)
- [].slice.call(arguments)
- Array.from(arguments)
function turnToArray(){
var arrArgs = Array.prototype.slice.call(arguments) // 将参数转换成数组
console.log.apply(console,arguments) // a b(打印出所有参数 )
console.log(arrArgs) // [‘a‘,‘b‘]
}
turnToArray(‘a‘,‘b‘)
- Array.prototype.slice.call(arguments) 将类数组转换为数组的原理
关键是数组对象上的slice方法
function slice(start, end) {
var startToUse = start || 0,
endToUse = end || ToUint32(this.length),
result = [];
for(var i = startToUse; i < endToUse; i++) {
result.push(this[i]);
}
return result;
以上是关于Array.prototype.slice.call()为什么能将类数组转换为数组的主要内容,如果未能解决你的问题,请参考以下文章