Slice 和 Splice 方法在 Javascript 中的底层差异
slice 和 splice 之间最基础的区别是 −
splice() 更改其调用的原数组,然后将移除的项作为新数组对象返回到数组中。
slice() 不会更改原数组,并且也会返回已切片的数组。
示例
// splice changes the array let arr = [1, 2, 3, 4, 5]; console.log(array.splice(2)); //slice doesn't change original one let arr2 = [1, 2, 3, 4, 5]; console.log(array2.slice(2)); console.log("
After Changing the arrays"); console.log(array); console.log(array2);
输出
[ 3, 4, 5 ] [ 3, 4, 5 ]
更改数组后
[[ 1, 2 ] [ 1, 2, 3, 4, 5 ]
广告