Lodash – flatMap method

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

Syntax Of Lodash flatMap method

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

Lodash flatMap method creates a flattened array of values by running each element in collection thru iteratee and flattening the mapped results. The iteratee is invoked with three arguments: (value, index|key, collection).

Arguments

  • collection (Array|Object) โˆ’ The collection to iterate over.
  • [iteratee=_.identity] (Function) โˆ’ The function invoked per iteration.

Output

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

Example

var _ = require('lodash');
var list = [1 , 2, 3, 4, 5];
var result = _.flatMap(list, function(n) {
   return [n, n];
});

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, 2, 3,
   3, 4, 4, 5, 5
]

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply