Array.prototype.slice.call(arguments)能够将具有length属性的对象转化为数组, 可以理解为将arguments转化成一个数组对象,让它具有slice方法 如: function test(){ console.log(Array.prototype.slice.call(arguments)); } test(1,2); Array是一个类,不能直接引用,需要获取原型后才能使用. 如果要直接引用,需要实例化array var array = new Arr…