how do I know if an object has a specific key code example
Example 1: javascript does key exist
var person={"name":"Billy","age":20}
person.hasOwnProperty("name"); // true
person.hasOwnProperty("sex"); // false
Example 2: how to check if object has key javascript
myObj.hasOwnProperty('key') // it checks object for particular key and not on prototype