Detecting an undefined object property

The usual way to check if the value of a property is the special value undefined, is: if(o.myProperty === undefined) { alert(“myProperty value is the special value `undefined`”); } To check if an object does not actually have such a property, and will therefore return undefined by default when you try to access it: if(!o.hasOwnProperty(‘myProperty’)) … Read more

tech