_.union

Creates an array of unique values, in order, from all given arrays using SameValueZero for equality comparisons.

Since

0.1.0

Arguments

  1. [arrays] (…Array): The arrays to inspect.

Returns

(Array): Returns the new array of combined values.

Example

_.union([2], [1, 2]);
// => [2, 1]