Lodash - uniq method



Syntax

_.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.

Arguments

  • array (Array) − The array to inspect.

Output

  • (Array) − Returns the new duplicate free array.

Example

var _ = require('lodash');
var numbers = [1, 2, 2, 4]
var result = _.uniq(numbers);
console.log(result);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

[ 1, 2, 4 ]
lodash_array.htm
Advertisements