今天我们来看下数组方法中splice()与slice()的区别
作者:互联网
先上代码
arrayObj.splice();将一个或多个新元素插入到数组的指定位置,插入位置的元素自动后移,返回新数组。
var arr2=[1,2,3,4,5];
从索引1开始,删除3个元素,插入2个字符串
var arr3=arr2.splice(1,3)
console.log(arr2)//[1,5]
console.log(arr3)//[2,3,4]
更多内容请见原文,原文转载自:https://blog.csdn.net/weixin_44519496/article/details/120127308
标签:slice,console,splice,插入,arr2,数组,log 来源: https://www.cnblogs.com/wangchuanxinshi/p/16525489.html