Lodash – uniq method

  • Post author:
  • Post category:Lodash
  • Post comments:2 Comments
Lodash - uniq method

Syntax Of Lodash uniq method

_.uniq(array)

Lodash uniq method 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 ]

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply