how to check it present in object or not key's value code example
Example: js check if object key exists
var obj = { key: undefined };
obj["key"] !== undefined // false, but the key exists!
var obj = { key: undefined };
obj["key"] !== undefined // false, but the key exists!