类数组转成数组对象

Posted codeing or artist ?

tags:

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

 1 var obj = {
 2     0:1,
 3     1:2,
 4     2:3,
 5     length:3
 6 };
 7 function toArray(obj){
 8     return Array.prototype.slice.call(obj);
 9 };
10 
11 console.log(toArray(obj));//[1,2,3]

 

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