Answers for "javascript filter array by another array"

0

javascript filter array by another array

arr1 = [1,2,3,4],
arr2 = [2,4],
response = arr1.filter(item => !arr2.includes(item));
Posted by: Guest on March-24-2021
3

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);
Posted by: Guest on July-06-2020

Code answers related to "javascript filter array by another array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language