hasOwnProperty()是什么?hasOwnProperty()用法详解

2023-07-05 16:36:01       来源:驱动中国网

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;

}

x 广告
x 广告

Copyright @  2015-2022 海外生活网版权所有  备案号: 沪ICP备2020036824号-21   联系邮箱:562 66 29@qq.com