【JS数组】在数组原型上实现删除某一个元素的方法

【JS数组】在数组原型上实现删除某一个元素的方法

Array.prototype.remove = function (item) {
  const index = this.indexOf(item);
  if (index > -1) {
    this.splice(index, 1);
  }
};
test() {
    const arr1 = [
      { id: 1, age: 12 },
      { id: 2, age: 13 },
      { id: 3, age: 14 }
    ];
    // 注意:indexOf只能查找相同地址的对象, 引用地址不同的话,查找不到
    // 所以:如果删除的元素是对象类型, 所删除元素必须和数组内部元素对象指向同一地址
    const item = arr1[1];
    arr1.remove(item);
    console.log("arr1---------test-----", arr1);
	const arr2 = ["a","b","c","d"]
	arr2.remove("b")
	console.log('arr2----------', arr2)
}
test()

你可能感兴趣的:(javascript,前端)