how to ask if a key exist in object js code example
Example 1: javascript hashtable contains key
if (obj.hasOwnProperty("key1")) {
...
}
Example 2: js key in dict
"key" in obj // true, regardless of the actual value
if (obj.hasOwnProperty("key1")) {
...
}
"key" in obj // true, regardless of the actual value