I'm trying to remove multiple elements from an array with .splice() but I am not getting the desired output, any suggestions ?
const removeFromArray = function(arr, ...target) { //taking target as a rest parameter.
for(let i = 0; i < arr.length; i++ ){
for(let j = 0; j < target.length; j++){
if(arr[i] == target[j] && typeof(arr[i]) == typeof(target[j])){
arr.splice(i , 1); //removing 1 element from i'th index.
}
}
}
return arr;
};
console.log((removeFromArray([1, 2, 3, 4], 3, 2))) //[ 1, 3, 4 ] , should display [1,4]