Creates an array of unique values that are not duplicated in others arrays.
Type of the arrays elements.
arrays
Rest
The arrays to inspect.
The new array of filtered values.
xor([1, 2], [2, 3]);// => [1, 3] Copy
xor([1, 2], [2, 3]);// => [1, 3]
Generated using TypeDoc
Creates an array of unique values that are not duplicated in others arrays.