Open JesseZhao1990 opened 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]) }