javascript check object key exists code example
Example 1: javascript does key exist
var person={"name":"Billy","age":20}
person.hasOwnProperty("name"); // true
person.hasOwnProperty("sex"); // false
Example 2: javascript hashtable contains key
if (obj.hasOwnProperty("key1")) {
...
}