hasOwnProperty()是什么:
JavaScript中的hasOwnProperty()方法用于检查对象是否具有指定的属性作为其自身的属性。
hasOwnProperty()用法详解:
object.hasOwnProperty( prop )
参数:此方法接受单个参数prop,该属性以字符串或要测试的属性的Symbol形式保存名称。
返回值:它返回一个布尔值,指示对象是否具有给定的属性作为其自己的属性。
范例1:本示例检查对象的属性。
JavaScript | hasOwnProperty() Method
GeeksforGeeks
hasOwnProperty() method in JavaScript
Click on the button to check if the
properites are of the object.
Output for own property:
Output for not own property:
Check properties
function checkProperty() {
let exampleObj = {};
exampleObj.height = 100;
exampleObj.width = 100;
// Checking for existing property
result1 = exampleObj.hasOwnProperty("height");
// Checking for non-existing property
result2 = exampleObj.hasOwnProperty("breadth");
document.querySelector(".outputProperty").textContent
= result1;
document.querySelector(".outputNonProperty").textContent
= result2;
}