使用in检查对象中是否含有某个属性时,如果对象中没有但是原型中有,也会返回true
console.log("name" in mc);
可以使用对象的hasOwnProperty()来检查对象自身中是否含有该属性
使用该方法只有当对象自身中含有属性时,才会返回true
console.log(mc.hasOwnProperty("age"));
标签:console,log,对象,含有,js,---,hasOwnProperty,属性
来源: https://www.cnblogs.com/leiyanting/p/15205922.html