Lodash – map method

Lodash - map method

Syntax Of Lodash map method

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

The Lodash map method creates an array of values by running each element in collection thru iteratee. 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 mapped array.

Example

var _ = require('lodash');
var list = [1, 2, 3, 4];
var users = [
   { 'user': 'Joe' },
   { 'user': 'Robert' }
];
var result = _.map(list, function square(n) {
   return n * n;
});
console.log(result);

result = _.map(users, 'user');
console.log(result);

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

Command

\>node tester.js

Output

[ 1, 4, 9, 16 ]
[ 'Joe', 'Robert' ]

Next Topic – Click Here

This Post Has 2 Comments

  1. Albert Fang

    It?s onerous to search out knowledgeable people on this matter, however you sound like you know what you?re talking about! Thanks

Leave a Reply