类数组转化为数组

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

 

 

posted @ 2019-09-29 12:01  蓝空之忆  阅读(301)  评论(0编辑  收藏  举报