Javascript中的Slice和Splice方法之间的低级差异
slice和splice之间的基本区别是-
splice()更改在其上调用它的原始数组,并以新数组对象的形式返回数组中已删除的项目。
slice()不会更改原始数组,并且还会返回切片的数组。
示例
// splice changes the array
let arr = [1, 2, 3, 4, 5];
console.log(array.splice(2));
//切片不会更改原始切片
let arr2 = [1, 2, 3, 4, 5];
console.log(array2.slice(2));
console.log("\n After Changing the arrays");
console.log(array);
console.log(array2);输出结果
[ 3, 4, 5 ] [ 3, 4, 5 ]
更改数组后
[[ 1, 2 ] [ 1, 2, 3, 4, 5 ]
热门推荐
10 祝女儿简短祝福语大全
11 大学新年祝福语简短创意
12 元旦适合的祝福语简短
13 朋友出远门祝福语简短
14 初六简短的祝福语
15 祝男孩生日祝福语简短
16 同事调离的祝福语简短
17 拜年红包的祝福语简短
18 妈妈生日祝福语简短励志