filter an array from another array javascript code example
Example 1: javascript filter array by another array
arr1 = [1,2,3,4],
arr2 = [2,4],
response = arr1.filter(item => !arr2.includes(item));
Example 2: javascript filter array of objects by array
var arr = [1,2,3,4],
brr = [2,4],
res = arr.filter(f => !brr.includes(f));
console.log(res);
Example 3: filter out arrays js
let newArray = array.filter(function(item) {
return condition;
});
Example 4: filter an array of objects and match its key with values inside another array
const arr = [1, 2, 3, 4]
const brr = [2, 4]
const res = arr.filter((f) => !brr.includes(f))
console.log(res)