js基础---hasOwnProperty() 检查对象自身是否含有该属性
使用in检查对象中是否含有某个属性时,如果对象中没有但是原型中有,也会返回true
console.log("name" in mc);
可以使用对象的hasOwnProperty()来检查对象自身中是否含有该属性
使用该方法只有当对象自身中含有属性时,才会返回true
console.log(mc.hasOwnProperty("age"));