“Periksa apakah kunci di kamus javascript” Kode Jawaban

JavaScript tidak ada

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

JavaScript Hashtable berisi kunci

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

JavaScript Periksa apakah kunci ada di objek

"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

Periksa apakah ada kunci dalam javascript objek

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

Bagaimana cara memeriksa apakah ada kunci dalam javascript objek

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

Periksa apakah kunci di kamus 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

Jawaban yang mirip dengan “Periksa apakah kunci di kamus javascript”

Pertanyaan yang mirip dengan “Periksa apakah kunci di kamus javascript”

Lebih banyak jawaban terkait untuk “Periksa apakah kunci di kamus javascript” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya