var obj = { b: "" }
if(Obj[a]) {}
if(a in Obj) {}
Object.keys(obj).includes('a')
Reflect.has(obj, 'a')
obj.hasOwnProperty('a')