D3.js | Función d3.map.remove()

La función map.remove() es una función incorporada en D3.js. Si el mapa creado contiene la string de clave dada, elimina la entrada y devuelve verdadero. Si la string clave no se presenta, devuelve falso.

Sintaxis:

map.remove(key)

Parámetros: esta función acepta una clave de parámetro único que se utiliza para especificar la string de clave.

Valor devuelto: esta función devuelve verdadero si el mapa creado tiene una entrada para la string de clave especificada; de lo contrario, devuelve falso.

Los siguientes programas ilustran la función d3.map.remove() en D3.js:

Ejemplo 1:

<!DOCTYPE html>
<html>
  
<head>
    <title>d3.map.remove() 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.remove() function
        A = map.remove("Ram");
        B = map.remove("Geek");
        C = map.remove("Geeks");
            
        // Getting true if the map has an
        // entry for the specified key string 
        // otherwise returns false.
        console.log(A);
        console.log(B);
        console.log(C);
    </script>
</body>
  
</html>

Producción:

true
false
true

Ejemplo 2:

<!DOCTYPE html>
<html>
  
<head>
    <title>d3.map.remove() 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.remove() function
        A = map1.remove("Ram");
        B = map2.remove("Geek");
        C = map3.remove("Shyam");
        D = map4.remove("Ram");
        
        // Getting true if the map has an
        // entry for the specified key string 
        // otherwise returns false.
        console.log(A);
        console.log(B);
        console.log(C);
        console.log(D);
    </script>
</body>
  
</html>

Producción:

true
false
false
false

Referencia: https://devdocs.io/d3~5/d3-collection#map_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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *