Lodash – groupBy method

Lodash - groupBy method

Syntax Of Lodash groupBy method

_.groupBy(collection, [iteratee=_.identity])

Lodash groupBy method creates an object composed of keys generated from the results of running each element of collection thru iteratee. The order of grouped values is determined by the order they occur in the collection. The corresponding value of each key is an array of elements responsible for generating the key.

Arguments

  • collection (Array|Object) โˆ’ The collection to iterate over.
  • [iteratee=_.identity] (Function) โˆ’ The iteratee to transform keys.

Output

  • (Object) โˆ’ Returns the composed aggregate object.

Example

var _ = require('lodash');
var list = [1.1 ,1.4, 2.1, 2.3];
 
var result = _.groupBy(list, Math.floor);
console.log(result);

result = _.groupBy(['one', 'two', 'three'], 'length');
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.1, 1.4 ], '2': [ 2.1, 2.3 ] }
{ '3': [ 'one', 'two' ], '5': [ 'three' ] }

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply