Returns the intersection of two arrays: the elements that are in common.
intersection([1, 2, 3], [2, 4, 6]);// returns [2] Copy
intersection([1, 2, 3], [2, 4, 6]);// returns [2]
See also:
Returns the intersection of two arrays: the elements that are in common.
See also: