<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
//hasOwnProperty方法是Object函数的原型对象上的方法。
//hasOwnProperty方法用于检测实例对象是否有非继承的属性,也就是自身有该属性。
function A(){
this.age = 10;
}
function B(){
//this.age = 20;
}
//通过指定B的原型对象,实现B继承A
B.prototype = new A();
//实例化子类B
var b = new B();
console.log(b.hasOwnProperty('age')); //结果:false
</script>
</body>
</html>
代码-JS之hasOwnProperty方法
最新推荐文章于 2024-08-19 15:59:13 发布