实参类数组列表对象
function fn() { //arguments实参列表 转数组的三种方式 console.log(arguments); console.log(Array.prototype.slice.call(arguments)); console.log(Array.from(arguments)); console.log([...arguments]); }
posted on 2020-10-12 09:47 章画 阅读(57) 评论(0) 编辑 收藏 举报