Método p5.js TypedDict remove()

El método remove() de p5.TypedDict en p5.js se usa para eliminar el par clave-valor dado del diccionario escrito. Un par clave-valor es un conjunto de dos valores que se asignan entre sí. Se puede acceder a estos valores consultando este diccionario utilizando la parte clave del par. Un diccionario escrito puede almacenar varios pares clave-valor a los que se puede acceder mediante los métodos del diccionario.

Sintaxis: 

remove( key )

Parámetros:  este método acepta un solo parámetro como se muestra arriba y se analiza a continuación:

  • clave: Esta es una string que denota la clave que debe verificarse en el diccionario.

El siguiente ejemplo ilustra el método remove() en p5.js:

Ejemplo:

Javascript

function setup() {
  createCanvas(550, 400);
  textSize(16);
  
  let tmpObj = {
    "Statue of Unity": "182 m",
    "Spring Temple Buddha": "128 m",
    "Ushiku Daibutsu": "100 m",
    "Great Buddha of Thailand": "92m"
  };
  
  // Create a new string dictionary
  let stringDict =
      createStringDict(tmpObj);
  text("New string dictionary created", 20, 20);
  
  // Checking the size of the dictionary
  let currSize = stringDict.size();
  text("The current size of the " +
       "dictionary is: " + currSize, 20, 40);
  
  let existOne =
      stringDict.hasKey("Statue of Unity");
  text("Dictionary has key " +
       "'Statue of Unity': " +
       existOne, 20, 80);
  
  let existTwo =
      stringDict.hasKey("Spring Temple Buddha");
  text("Dictionary has key " +
       "'Spring Temple Buddha': " +
       existTwo, 20, 100);
  
  // Removing one key
  stringDict.remove("Spring Temple Buddha");
  text("One key removed from the dictionary",
       20, 140);
  
  // Checking the size of the dictionary again
  currSize = stringDict.size();
  text("The current size of the dictionary is: " +
       currSize, 20, 160);
  
  // Checking for the removed key
  existTwo =
    stringDict.hasKey("Spring Temple Buddha");
  text("Dictionary has key " +
       "'Spring Temple Buddha': " +
       existTwo, 20, 200);
  
  // Checking the other keys
  let existThree = 
      stringDict.hasKey("Ushiku Daibutsu");
  text("Dictionary has key " +
       "'Ushiku Daibutsu': " +
       existThree, 20, 220);
}

Producción:

Editor en línea: https://editor.p5js.org/
Configuración del entorno: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
Referencia: https://p5js.org/ referencia/#/p5.TypedDict/remove

Publicación traducida automáticamente

Artículo escrito por sayantanm19 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 *