js判斷物件裡面是否有某個屬性

Liuboxx1發表於2018-08-17
if(obj.hasOwnProperty('property')) {
    console.log('屬性存在');
}else {
    console.log('屬性不存在');
}

相關文章