set.remove () es una función en D3.js. Si la array dada contiene el valor especificado, lo elimina y devuelve verdadero. De lo contrario, esta función no hace nada y devuelve falso.
Sintaxis:
d3.set([Array]).remove(element);
Parámetros: Esta función acepta dos parámetros que se ilustran a continuación:
- Array: Esta es una array dada de elementos como string.
- elemento: este es el valor que se buscará en la array dada y lo elimina si está presente y devuelve verdadero; de lo contrario, no hace nada y devuelve falso.
Valor devuelto: Devuelve verdadero si la array dada contiene el valor especificado De lo contrario, devuelve falso.
Nota: No contiene la array actualizada.
Los siguientes programas ilustran la función d3.set.remove() en D3.js.
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> d3.set.remove() Function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Initialising an array Array1 = ["a", "a", "b", "c"]; Array2 = ["c", "c", "c"]; Array3 = ["Geeks", "gfg", "GeeksforGeeks"]; // Calling the d3.set.remove() function A = d3.set(Array1).remove("a"); B = d3.set(Array2).remove("a"); C = d3.set(Array3).remove("Geeks"); // Getting the value true if the specified element // is present in the array otherwise false console.log(A); console.log(B); console.log(C); </script> </body>
Producción:
true false true
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title> d3.set.remove() Function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Calling the d3.set.remove() function // with a array and a element as the parameter A = d3.set([1, 2, 3, 3]).remove(4); B = d3.set(["a"]).remove("a"); C = d3.set(["a", "b", "c", "a", "b", "c"]).remove("d"); // Getting the value true if the specified element // is present in the array otherwise false console.log(A); console.log(B); console.log(C); </script> </body>
Producción:
false true false
Referencia: https://devdocs.io/d3~5/d3-collection#set_remove
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