var obj={
"a":1,
"b":2,
"c":{
"d":3,
"e":4
}
};
"a" in obj //自有属性返回true,
"x" in obj //没有该属性返回false,
"toString" in obj //继承属性也 返回true,
//in检测属性是否存在于某个对象中,自有属性和继承属性都返回true,
obj.hasOwnProperty("a");//hasOwnProperty()用于检测属性是否是自有属性,是则返回true,否则返回false,
obj.propertyIsEnumerable("a"); //propertyIsEnumerable()方法检测属性是否可枚举,
obj.propertyIsEnumerable("toString");//toString是继承属性且不可枚举,