js补充

arguments

实参类数组列表对象

function fn() {
  //arguments实参列表 转数组的三种方式
  console.log(arguments);
  console.log(Array.prototype.slice.call(arguments));
  console.log(Array.from(arguments));
  console.log([...arguments]);
}
View Code

 

posted on 2020-10-12 09:47  章画  阅读(57)  评论(0编辑  收藏  举报

导航