hasproperty in javascript code example
Example 1: javascript hasownproperty
var person = {
"first_name": "Bob",
"last_name": "Dylan"
};
person.hasOwnProperty('first_name');
person.hasOwnProperty('age');
Example 2: test if property exists javascript
const hero = {
name: 'Batman'
};
hero.hasOwnProperty('name');
hero.hasOwnProperty('realName');
Example 3: how reliable is js hasownproperty
o = new Object();
o.propOne = null;
o.hasOwnProperty('propOne');
o.propTwo = undefined;
o.hasOwnProperty('propTwo');