JesseZhao1990 / blog

learing summary
MIT License
62 stars 7 forks source link

关于arguments转数组的总结归纳 #139

Open JesseZhao1990 opened 6 years ago

JesseZhao1990 commented 6 years ago
// 方法1
Array.prototype.slice.apply(arguments);

// 方法2
Array.prototype.concat.apply([],arguments);

// 方法3
Array.from(arguments)

// 方法4
Array.of(...arguments)

// 方法5
[...arguments]

// 方法6
let arr = [];
for(let i=0; i<arguments.length; i++){
  arr.push(arguments[i])
}