Every JavaScript object has a special method object. hasOwnProperty(‘myProp’) that returns a boolean indicating whether object has a property myProp . hero. hasOwnProperty(‘name’) returns true because the property name exists in the object hero .
Every JavaScript object has a special method object. hasOwnProperty(‘myProp’) that returns a boolean indicating whether object has a property myProp . hero. hasOwnProperty(‘name’) returns true because the property name exists in the object hero .