slice方法是定义在js数组原型中的方法,用于截取数组的部分元素,具体使用如下: arrayExample.slice(start, end); start为起始元素位置,end为截止元素位置,如: , , , , ]; ,); console.log(arrayResult); //结果为[2, 3, 4]; 其中end参数可以省略,参数均可为负值,即为从末尾算起位数. 另外,Array.prototype.slice还有另一个用法——将拥有length属性的对象转换为数组,如函数中的arg…