📌  相关文章
📜  检查类中是否存在 js 属性 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:02.491000             🧑  作者: Mango

代码示例4
// the coolest way
const obj = {
 weather: 'Sunny; 
}

if('weather' in obj) {
 // do something 
}