Saturday, November 22, 2025
HomeLanguagesJavascriptD3.js | d3.map.entries() Function

D3.js | d3.map.entries() Function

The map.entries() function in D3.js used to return an array of key-value objects for the entry in the created map.

Syntax:

d3.map.entries();

Parameters: This function does not accept any parameter.

Return Value: This function returns an array of key-value pair for the entry in the created map.

Below programs illustrate the d3.map.entries() function in D3.js:

Example 1:




<!DOCTYPE html>
<html>
    
<head>
    <title>d3.map.entries() Function</title>
    
    <script src='https://d3js.org/d3.v4.min.js'></script>
</head>
  
<body>
  <script>
       
     // Creating a map
     var map1 = d3.map({"a": 1});
     var map2 = d3.map({"GFG": 5});
       
     // Calling the map.entries() function
     A = map1.entries();
     B = map2.entries();
       
     // Getting the array of key value pair
     console.log(A);
     console.log(B);
  </script>
</body>
  
</html>


Output:

[{"key":"a", "value":1}]
[{"key":"GFG", "value":5}]

Example 2:




<!DOCTYPE html>
<html>
    
<head>
    <title>d3.map.entries() Function</title>
    
    <script src='https://d3js.org/d3.v4.min.js'></script>
</head>
  
<body>
  <script>
       
     // Creating a map
     var map1 = d3.map({"Ram": 5}, {"Geek": 10});
     var map2 = d3.map();
       
     // Calling the map.entries() function
     A = map1.entries();
     B = map2.entries();
       
     // Getting the array of key value pair
     console.log(A);
     console.log(B);
  </script>
</body>
  
</html>


Output:

[{"key":"Ram", "value":5}]
[]

Note: Map2 was null that is why it’s became blank.

Reference: https://devdocs.io/d3~5/d3-collection#map_entries

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS