Creates an array of unique values, in order, from all given arrays using SameValueZero for equality comparisons.
SameValueZero
Optional
Rest
The arrays to inspect.
Returns the new array of combined values.
0.1.0
difference, unionBy, unionWith, without, xor, xorBy
union([2, 3], [1, 2])// => [2, 3, 1] Copy
union([2, 3], [1, 2])// => [2, 3, 1]
Creates an array of unique values, in order, from all given arrays using
SameValueZero
for equality comparisons.