how to check to see if property exists in an obejct javascript code example
Example 1: how to check wether the property exist in a object in java script
if (obj.hasOwnProperty('prop')) {
// do something
}
Example 2: check if js property exists in class
myObj.hasOwnProperty(myProp)