Published Mar 18, 2022
[
 
]
_.uniq(array)
Creates a duplicate-free version of an array, using SameValueZero
for equality
comparisons, in which only the first occurrence of each element is kept. The
order of result values is determined by the order they occur in the array.
array (Array)
: The array to inspect.(Array)
: Returns the new duplicate free array._.uniq([2, 1, 2]);
// => [2, 1]