js一次性删除数组中多个元素

方法体内部使用splice方法,在使用for循环或者forEach遍历数组的话,删除数据不全

方法一 ,用逆向循环

for (let index = _this.teamIds.length - 1; index >= 0 ; index--) {
       if(_this.teamIds[index].indexOf(val) == '-1'){
          _this.teamIds.splice(index, 1);
       }

方法二,用filter

var arr = [1, 2, 3, 4, 5];
arr = arr.filter(item => item == 4);
console.log(arr);    //数组只留下4

你可能感兴趣的:(JavaScript)