Returns the intersection between two arrays.
The type of the elements in the arrays.
The first array.
The second array.
The unique elements present in both arrays.
import { intersect } from '@pacote/array'intersect(['a', 'b', 'c'], ['b', 'c', 'd']) // => ['b', 'c'] Copy
import { intersect } from '@pacote/array'intersect(['a', 'b', 'c'], ['b', 'c', 'd']) // => ['b', 'c']
Returns the intersection between two arrays.