How to find the intersection of two arrays (values that exist in both arrays) in JavaScript

1 Answer

0 votes
var arr1 = [5, 7, 1, 1, 0, 6, 2];
var arr2 = [2, 8, 8, 6, 9, 3, 3];
 
var intersection = [...new Set(arr1)].filter(item => arr2.includes(item));
 
console.log(intersection); 
 
 
 
 
 
/*
run:
 
[6, 2]
 
*/

 



answered Feb 14, 2021 by avibootz
edited Jan 25, 2022 by avibootz
...