Saturday, February 7, 2026
HomeLanguagesJavascriptLodash _.entries() Method

Lodash _.entries() Method

The _.entries() method is used to create an array of keyed-value pairs for the specified object. If object is a map or set, its entries are returned.

Syntax:

_.entries(object)

Parameters: This method accepts single parameter as mentioned above and described below:

  • object: This parameter holds the object to query.

Return Value: This method returns the key-value pairs.

Example 1:

Javascript




// Defining Lodash variable
const _ = require('lodash');
 
// Specifying a function
function gfg() {
  this.A = 5;
  this.B = 10;
  this.C = 15;
}
 
// Calling the _.entries() function
_.entries(new gfg);


 

 

Output:

 

[ [ 'A', 5 ], [ 'B', 10 ], [ 'C', 15 ] ]

 

Example 2: In the below code, a set is taken as the object, hence the function _.entries() returns its entries.

 

Javascript




// Defining Lodash variable
const _ = require('lodash');
 
// Initializing a set
const object = {a: {b: 1}};
 
// Calling the _.entries() function
_.entries(object);


 

 

Output:

 

[ [ 'a', { b: 1 } ] ]

 

Note: This will not work in normal JavaScript because it requires the lodash library to be installed.

 

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32491 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6863 POSTS0 COMMENTS
Nicole Veronica
11987 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12076 POSTS0 COMMENTS
Shaida Kate Naidoo
6996 POSTS0 COMMENTS
Ted Musemwa
7238 POSTS0 COMMENTS
Thapelo Manthata
6947 POSTS0 COMMENTS
Umr Jansen
6933 POSTS0 COMMENTS