我有:
var array = new Array();
array.push("A");
array.push("B");
array.push("C");
我希望能够做到:
array.remove (" B ");
但是没有移除函数。我该怎么做呢?
我有:
var array = new Array();
array.push("A");
array.push("B");
array.push("C");
我希望能够做到:
array.remove (" B ");
但是没有移除函数。我该怎么做呢?
当前回答
你得自己写。您可以对数组进行循环,获取要删除的项的索引,并使用splice删除它。
或者,您可以创建一个新数组,遍历当前数组,如果当前对象与您想要删除的对象不匹配,则将其放入新数组中。
其他回答
简单解决方案(ES6)
如果你没有重复元素
Array.prototype.remove = function(elem) {
var indexElement = this.findIndex(el => el === elem);
if (indexElement != -1)
this.splice(indexElement, 1);
return this;
};
在线演示(小提琴)
使用array.splice
/*array.splice(index , howMany[, element1[, ...[, elementN]]])
array.splice(index) // SpiderMonkey/Firefox extension*/
array.splice(1,1)
来源: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice
如果想要从字符串数组中移除字符串数组:
const names = ['1','2','3','4']
const excludeNames = ['2','3']
const filteredNames = names.filter((name) => !excludeNames.includes(name));
// ['1','4']
你得自己写。您可以对数组进行循环,获取要删除的项的索引,并使用splice删除它。
或者,您可以创建一个新数组,遍历当前数组,如果当前对象与您想要删除的对象不匹配,则将其放入新数组中。
这只对str list有效,查一下
myStrList.filter(item=> !["deletedValue","deletedValue2"].includes(item))