obj.hasOwnProperty
时间: 2023-08-15 19:11:52 浏览: 93
js中的hasOwnProperty和isPrototypeOf方法使用实例
`obj.hasOwnProperty` 是 JavaScript 中的一个方法,用于检查一个对象是否具有指定的属性。它返回一个布尔值,表示该对象是否具有该属性(包括继承的属性)。
使用示例:
```javascript
const obj = {
name: 'John',
age: 25
};
console.log(obj.hasOwnProperty('name')); // true
console.log(obj.hasOwnProperty('gender')); // false
```
在上面的示例中,`obj` 对象具有 `name` 属性,因此 `obj.hasOwnProperty('name')` 返回 `true`。而 `obj` 对象没有 `gender` 属性,因此 `obj.hasOwnProperty('gender')` 返回 `false`。
阅读全文