Lodash - zipObject method



Syntax

_.zipObject([props=[]], [values=[]])

This method is like _.fromPairs except that it accepts two arrays, one of property identifiers and one of corresponding values.

Arguments

  • [props=[]] (Array) − The property identifiers.

  • [values=[]] (Array) − The property values.

Output

  • (Object) − Returns the new object.

Example

var _ = require('lodash');
 
var result = _.zipObject(['a', 'b'], [1, 2]);
console.log(result);

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

Command

\>node tester.js

Output

{ a: 1, b: 2 }
lodash_array.htm
Advertisements