企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
# hasOwnProperty属性 检测对象上的属性和方法,只能检查私有的,不能检测公有的 ```javascript function Person(name, age) { //私有的 this.name = name; this.age = age; } Person.prototype = { //公有的 constructor:Person, study:function () { console.log(this.name,this.age); }, say:function () { console.log(this.name," say hello"); } } var p = new Person("zs",10); console.log(p.hasOwnProperty("name"));//true console.log(p.hasOwnProperty("study"));//false console.log(p.hasOwnProperty("name222"));//false ```