javascript check if element in object 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: how to check if object exists in javascript
if (typeof maybeObject != "undefined") {
alert("GOT THERE");
}