您当前的位置 :栏目 > 机械 >
hasOwnProperty()是什么?hasOwnProperty()用法详解|全球热门
2023-07-05 16:40:44   来源:驱动中国网  分享 分享到搜狐微博 分享到网易微博

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;

}



[责任编辑:ruirui]





关于我们| 客服中心| 广告服务| 建站服务| 联系我们
 

中国焦点日报网 版权所有 沪ICP备2022005074号-20,未经授权,请勿转载或建立镜像,违者依法必究。