function中的arguments转数组的标准方法
举例说明:
function arr(){
console.log(arguments); // 输出:[Arguments] { '0': 1, '1': 2, '2': 3 }
_array = Array.prototype.slice.apply(arguments);
console.log(_array); // 输出:[ 1, 2, 3 ]
}
arr(1, 2, 3)
mannuan
Rome was not built in a day.
举例说明:
function arr(){
console.log(arguments); // 输出:[Arguments] { '0': 1, '1': 2, '2': 3 }
_array = Array.prototype.slice.apply(arguments);
console.log(_array); // 输出:[ 1, 2, 3 ]
}
arr(1, 2, 3)