“JavaScript Verifique se a chave existe no objeto” Respostas de código

JavaScript existe a chave

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

Hashtable JavaScript contém chave

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

JavaScript Verifique se a chave existe no 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

Verifique se existe uma chave em um JavaScript de objeto

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

Como verificar se existe uma chave em um objeto JavaScript

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

Verificando se existe uma chave em um objeto JavaScript?

5003

Checking for undefined-ness is not an accurate way of testing whether a key exists. What if the key exists but the value is actually undefined?

var obj = { key: undefined };
console.log(obj["key"] !== undefined); // false, but the key exists!
shafeeque

Respostas semelhantes a “JavaScript Verifique se a chave existe no objeto”

Perguntas semelhantes a “JavaScript Verifique se a chave existe no objeto”

Mais respostas relacionadas para “JavaScript Verifique se a chave existe no objeto” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código