Syntax Of Lodash flatMapDeep method
_.flatMapDeep(collection, [iteratee=_.identity])
This Lodash flatMapDeep method is like _.flatMap except that it recursively flattens the mapped results.
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 = _.flatMapDeep(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
Pingback: Lodash - flatMap method - Adglob Infosystem Pvt Ltd
Pingback: Lodash - Collection - Adglob Infosystem Pvt Ltd