类数组转化为数组

function test(){
   console.log(arguments); // 类数组
   // 类数组转化为数组
   console.log(Array.prototype.slice.call(arguments));
}
test(1,2,3,4,5);
 

猜你喜欢

转载自www.cnblogs.com/yrqingblog/p/11607082.html