Lodash – zipObject method

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

Syntax Of Lodash zipObject method

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

This Lodash zipObject method is like _.fromPairs except that it accepts two arrays, one of the property identifiers and one of the 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 }

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply