Lodash – sortedUniqBy method

  • Post author:
  • Post category:Lodash
  • Post comments:1 Comment
Lodash - sortedUniqBy method

Syntax Of Lodash sortedUniqBy method

_.sortedUniqBy(array, [iteratee])

This Lodash sortedUniqBy method is like _.uniqBy except that it’s designed and optimized for sorted arrays.

Arguments

  • array (Array) โˆ’ The array to inspect.
  • [iteratee] (Function) โˆ’ The iteratee invoked per element.

Output

  • (Array) โˆ’ Returns the new duplicate free array.

Example

var _ = require('lodash');
var list = [1.1, 2.1, 2.2, 2.3];

var result = _.sortedUniqBy(list, Math.floor);
console.log(result);

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

Command

\>node tester.js

Output

[ 1.1, 2.1 ]

Next Topic – Click Here

This Post Has One Comment

Leave a Reply