Lodash – from Pairs method

  • Post author:
  • Post category:Lodash
  • Post comments:3 Comments
Lodash from Pairs method

Syntax Of Lodash from Pairs method

_.fromPairs(pairs)

The Lodash from Pairs method inverse of _.toPairs; this method returns an object composed from key-value pairs.

Arguments

  • pairs (Array) − The key-value pairs.

Output

  • (Object) − Returns the new object.

Example

var _ = require('lodash');
var list = [['One' , 1], ['Two', 2]];
var result = _.fromPairs(list)

console.log(result);

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

Command

\>node tester.js

Output

{ One: 1, Two: 2 }

Next Topic – Click Here

This Post Has 3 Comments

  1. ‏amazfit bip s

    Im obliged for the article post.Really thank you! Awesome.

Leave a Reply