Creates an array of unique values that are included in all given arrays.
Type of the arrays elements.
arrays
Rest
The arrays to inspect.
The new array of intersecting values.
intersection([1, 2], [2, 3]);// => [2] Copy
intersection([1, 2], [2, 3]);// => [2]
Generated using TypeDoc
Creates an array of unique values that are included in all given arrays.