La función map.size() en D3.js se usa para devolver el número de entradas en el mapa creado.
Sintaxis:
map.size()
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el número de entradas en el mapa creado.
Los siguientes programas ilustran la función d3.map.size() en D3.js:
Ejemplo 1:
javascript
<!DOCTYPE html> <html> <head> <title>d3.map.size() Function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Creating a map var map = d3.map({"Ram": 5, "Geeks": 10, "gfg": 15}); // Calling the map.size() function A = map.size(); // Getting the number of // entries in the map. console.log(A); </script> </body> </html>
Producción:
3
Ejemplo 2:
javascript
<!DOCTYPE html> <html> <head> <title>d3.map.size() Function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Creating some maps var map1 = d3.map({"Ram": 5}); var map2 = d3.map({"Geeks": 10}); var map3 = d3.map({"Ram": 5, "Geeks": 10}); var map4 = d3.map(); // Calling the map.size() function A = map1.size(); B = map2.size(); C = map3.size(); D = map4.size(); // Getting the number of entries in the map. console.log(A); console.log(B); console.log(C); console.log(D); </script> </body> </html>
Producción:
1 1 2 0
Referencia: https://devdocs.io/d3~5/d3-collection#map_size
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