伪数组如何转成数组
Posted webjl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了伪数组如何转成数组相关的知识,希望对你有一定的参考价值。
1.使用Array.prototype.slice.call();
Array.prototype.slice.call({
0:"yeluosen",
1:12,
2:true,
length:3
});
//["yeluosen", 12, true]
2.使用[].slice.call()
[].slice.call({
0:"yeluosen",
1:12,
2:true,
length:3
});
//["yeluosen", 12, true]
3.使用ES6中Array.from方法
Array.from({
0:"叶落森",
1:18,
2:2014,
3:"北京邮电大学",
length:4
});
//["叶落森", 18, 2014, "北京邮电大学"]
以上是关于伪数组如何转成数组的主要内容,如果未能解决你的问题,请参考以下文章
javascript中什么是伪数组?如何将伪数组转为标准数组?
在Javascript中什么是伪数组?如何将伪数组转化为标准数组?