La función d3.keys() en D3.js se usa para devolver una array que contiene los nombres de propiedades o claves del objeto especificado o una array asociativa.
Sintaxis:
d3.keys(object)
Parámetros: esta función acepta un objeto de parámetro único que contiene la clave y el valor en pares.
Valor devuelto: Devuelve las claves del objeto dado.
Los siguientes programas ilustran la función d3.keys() en D3.js:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> d3.keys() Function </title> <script src = "https://d3js.org/d3.v4.min.js"></script> </head> <body> <script> // Initialising an object var month = { "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>
Producción:
January, February, March, April
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title> d3.keys() Function </title> <script src = "https://d3js.org/d3.v4.min.js"></script> </head> <body> <script> // Initialising an object var month = { "GeeksforGeeks": 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>
Producción:
GeeksforGeeks, Geeks, Geek, gfg
Referencia: https://devdocs.io/d3~5/d3-collection#keys
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA