check if key is in enum js code example
Example 1: how to check if object has key javascript
myObj.hasOwnProperty('key') // it checks object for particular key and not on prototype
Example 2: forjs check if key in json
var json = {key1: 'value1', key2: 'value2'}
"key1" in json ? console.log('key exists') : console.log('unknown key')
"key3" in json ? console.log('key exists') : console.log('unknown key')