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
Pingback: Lodash - unionWith method - Adglob Infosystem Pvt Ltd
Awesome blog post.Much thanks again.