判断JS对象是否拥有某属性第一种,判断js对象中是否有某个属性var obj = {test : 'test'}if('test' in obj){ console.log('yes')} else2023-03-11JavaScript160