La función map.empty() en D3.js se usa para devolver verdadero si el mapa creado que contiene cero entradas devuelve falso.
Sintaxis:
map.empty();
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve verdadero si el mapa está vacío; de lo contrario, devuelve falso.
Los siguientes programas ilustran la función d3.map.empty() en D3.js:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> d3.map.empty() Function </title> <script src = "https://d3js.org/d3.v4.min.js"></script> </head> <body> <script> // Creating a map var map1 = d3.map({"a": 1}, {"b": 2}, {"c": 3}); var map2 = d3.map(); // Calling the map.empty() function A = map1.empty(); B = map2.empty(); // Getting the result whether the maps are empty or not console.log(A); console.log(B); </script> </body> </html>
Producción:
false true
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title> d3.map.empty() Function </title> <script src = "https://d3js.org/d3.v4.min.js"></script> </head> <body> <script> // Creating a map var map1 = d3.map({"a": 1}, {"b": 2}, {"c": 3}); var map2 = d3.map({"GFG": 5}); var map3 = d3.map({}); var map4 = d3.map(); // Calling the map.empty() function A = map1.empty(); B = map2.empty(); C = map3.empty(); D = map4.empty(); // Getting the result whether // the maps are empty or not console.log(A); console.log(B); console.log(C); console.log(D); </script> </body> </html>
Producción:
false false true true
Referencia: https://devdocs.io/d3~5/d3-collection#map_empty
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