JS一次性删除数组中多个元素
2020-03-27 本文已影响0人
西瓜鱼仔
使用for普通写法或者forEach遍历数组,方法体内部使用splice方法删除数组元素,会删除的不全。
想要完美实现可使用如下方法:
方法一 :用逆向循环
for (let index = _this.teamIds.length - 1; index >= 0; index--) {
if (_this.teamIds[index].indexOf(val) == '-1') {
_this.teamIds.splice(index, 1);
}
}
方法二:用filter
let arr = [1, 2, 3, 4, 5];
arr = arr.filter(item => item == 4);
console.log(arr); //数组只留下4
原文地址:https://blog.csdn.net/xiongdaandxiaomi/article/details/94393400