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

1 Answer

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

 



answered Jan 25, 2022 by avibootz
...