Lodash - zipObjectDeep method



Syntax

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

This method is like _.zipObject except that it supports property paths.

Arguments

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

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

Output

  • (Object) − Returns the new object.

Example

var _ = require('lodash');
 
var result = _.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [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: { b: [ [Object], [Object] ] } }
lodash_array.htm
Advertisements