当前位置: 代码迷 >> 综合 >> hasOwnProperty
  详细解决方案

hasOwnProperty

热度:13   发布时间:2023-11-25 17:59:20.0
<!DOCTYPE html>
<html>
<head><title></title>
</head>
<body>
<script type="text/javascript">class Person{
    name=null;age=0;}Person.prototype.height=0;/*let p=new Person();// in的特点: 只要类中或者原型对象中有, 就会返回trueconsole.log("name" in p);console.log("width" in p); // falseconsole.log("height" in p); // true*/// 需求: 判断某一个对象自身是否拥有某一个属性let p = new Person();// 特点: 只会去类中查找有没有, 不会去原型对象中查找console.log(p.hasOwnProperty("name"));console.log(p.hasOwnProperty("height"));
</script>
</body>
</html>