La función set.empty() en D3.js se usa para devolver verdadero si la array dada tiene cero elementos; de lo contrario, devuelve falso.
Sintaxis:
d3.set([Array]).empty();
Parámetros: esta función acepta un solo parámetro Array que se va a buscar, ya sea que esté vacío o no.
Valor devuelto: Devuelve verdadero si la array dada está vacía; de lo contrario, devuelve falso.
Los siguientes programas ilustran la función d3.set.empty() en D3.js:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> d3.set.empty() function </title> <script src = "https://d3js.org/d3.v4.min.js"></script> </head> <body> <script> // Initialising an array Array1 = ["a"]; Array2 = []; Array3 = ["Geeks", "gfg", "GeeksforGeeks"]; // Calling the d3.set.empty() function A = d3.set(Array1).empty(); B = d3.set(Array2).empty(); C = d3.set(Array3).empty(); // Getting the value true if the given array is // empty otherwise returns false console.log(A); console.log(B); console.log(C); </script> </body> </html>
Producción:
false true false
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title> d3.set.empty() function </title> <script src = "https://d3js.org/d3.v4.min.js"></script> </head> <body> <script> // Calling the d3.set.empty() function // with a array as the parameter A = d3.set([1, 2, 3, 3]).empty(); B = d3.set([]).empty(); C = d3.set(["a", "b", "c", "a", "b", "c"]).empty(); // Getting the value true if the given array is // empty otherwise returns false console.log(A); console.log(B); console.log(C); </script> </body> </html>
Producción:
false true false
Referencia: https://devdocs.io/d3~5/d3-collection#set_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