typescript check if property exists in object code example
Example 1: javascript if field exists
const hero = {
name: 'Batman'
};
hero.hasOwnProperty('name'); // => true
hero.hasOwnProperty('realName'); // => false
Example 2: check if js property exists in class
myObj.hasOwnProperty(myProp)