Returns a list of elements that exist in both arrays
intersect([1, 2, 3], [4, 3, 2]); // [2,3]
Generated using TypeDoc
Returns a list of elements that exist in both arrays
Example