比如我定义了一个对象A,我怎么判断这个对象的一个属性是不是存在?比如:A.name
‘属性’ in 对象 ===> true/false
‘name’ in A
true 有
false 没有
if(typeof A.name != ‘undefined’){
//do something…
}