“Compruebe si la clave en el diccionario JavaScript” Código de respuesta

JavaScript existe la clave

var person={"name":"Billy","age":20}
person.hasOwnProperty("name"); // true
person.hasOwnProperty("sex"); // false
Grepper

JavaScript hashtable contiene clave

if (obj.hasOwnProperty("key1")) {
  ...
}
Faithful Finch

JavaScript Compruebe si existe la clave en el objeto

"key" in obj // true, regardless of the actual value

If you want to check if a key doesn't exist, remember to use parenthesis:
!("key" in obj) // true if "key" doesn't exist in object
!"key" in obj   // ERROR!  Equivalent to "false in obj"

Or, if you want to particularly test for properties of the object instance (and not inherited properties), use hasOwnProperty:
obj.hasOwnProperty("key") // true
Super Seahorse

Compruebe si existe una clave en un objeto JavaScript

"key" in obj // true, regardless of the actual value
Determined Dunlin

Cómo verificar si existe una clave en un objeto JavaScript

!("key" in obj) // true if "key" doesn't exist in object
!"key" in obj   // ERROR!  Equivalent to "false in obj"
Dizzy Dugong

Compruebe si la clave en el diccionario JavaScript

// We can check if an item or key exists by using a simple if statement.
// We will just provide the key to the if statement. 
// If the item or key exists the if block will be executed.

if(dict.name){
   console.log(dict.name);
}

if(dict[10]){
   console.log(dict[10]);
}
Grieving Gaur

Respuestas similares a “Compruebe si la clave en el diccionario JavaScript”

Preguntas similares a “Compruebe si la clave en el diccionario JavaScript”

Más respuestas relacionadas con “Compruebe si la clave en el diccionario JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código