how to know if the object matches the other object exists javascript code example
Example: how to check if object exists in javascript
if (typeof maybeObject != "undefined") {
alert("GOT THERE");
}
if (typeof maybeObject != "undefined") {
alert("GOT THERE");
}