D3.js | d3.keys() Function

The d3.keys() function in D3.js is used to return an array containing the property names or keys of the specified object or an associative array.
Syntax:
d3.keys(object)
Parameters: This function accepts single parameter object containing key and value in pairs.
Return Value: It returns the keys of the given object.
Below programs illustrate the d3.keys() function in D3.js:
Example 1:
| <!DOCTYPE html> <html>  Â<head>     <title>         d3.keys() Function     </title>      Â</head>  Â<body>     <script>      Â        // Initialising an object         varmonth = {             "January": 1,             "February": 2,             "March": 3,             "April": 4         };              Â        // Calling the d3.keys() function         A = d3.keys(month);        Â        // Getting the key values of the given object         document.write(A);     </script> </body>  Â</html>                      | 
Output:
January, February, March, April
Example 2:
| <!DOCTYPE html> <html>  Â<head>     <title>         d3.keys() Function     </title>      Â</head>  Â<body>     <script>      Â        // Initialising an object         varmonth = {             "zambiatek": 0,             "Geeks": 2,             "Geek": 3,             "gfg": 4         };              Â        // Calling the d3.keys() function         A = d3.keys(month);        Â        // Getting the key values of the given object         document.write(A);     </script> </body>  Â</html>                      | 
Output:
zambiatek, Geeks, Geek, gfg
Reference: https://devdocs.io/d3~5/d3-collection#keys
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek 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!
 
				 
					


