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
Pingback: Lodash - zip method - Adglob Infosystem Pvt Ltd
Pingback: Lodash - Array - Adglob Infosystem Pvt Ltd