判断对象是否有某个key
let obj = {a: 'b'} obj.hasOwnProperty("a") // true // 或 'a' in obj // true
如果引入了core-js,可以使用
obj.has(a)
我想判断您是不是过年去了
我想判断您是不是过年去了