从数组中删除引用JavaScript中散布数组的元素

假设我们有一个像这样的文字数组-

const arr = ['cat','dog','elephant','lion','tiger','mouse'];

我们需要编写一个JavaScript函数,该函数将一个数组作为第一个参数,然后将任意数量的字符串作为第二个和第三个参数,以及更多其他参数。

然后,如果该字符串作为函数的参数提供,则我们的函数应从该数组中删除作为第一个参数的所有字符串。

示例

为此的代码将是-

const arr = ['cat','dog','elephant','lion','tiger','mouse'];
const removeFromArray = (arr, ...removeArr) => {
   removeArr.forEach(item => {
      const index = arr.indexOf(item);
      if(index !== -1){
         arr.splice(index, 1);
      };
   });
}
removeFromArray(arr, 'dog', 'lion');
console.log(arr);

输出结果

控制台中的输出-

[ 'cat', 'elephant', 'tiger', 'mouse' ]