Array.prototype._splice = function (start, count, ...item) {
let arr = this;
let range = start + count;
let res = [];
for (let i = start; i < range; i++) {
res.push(arr[i]);
}
const startRange = arr.slice(0, start);
const endRange = arr.slice(start + count, arr.length);
const newArr = [...startRange, ...item, ...endRange];
for (let j = 0; j < newArr.length; j++) {
this[j] = newArr[j];
this.length--;
}
return res;
};
let list = [1, 2, 3, 4];
let a = list._splice(0, 2,5);
console.log(list);
console.log(a);
模拟splice方法
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。