首页 动态 消费 创业 汽车 商业 房产 互联网 纵横 聚焦 快讯 热点 手机版
资讯 > 商业 >

热门:hasOwnProperty()是什么?hasOwnProperty()用法详解

来源:驱动中国网 发布时间:2023-07-05 16:33:11

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;

}

责任编辑:FG003


 

网站首页 | 关于我们 | 免责声明 | 联系我们
 

所有文章、评论、信息、数据仅供参考,使用前请核实,风险自负。
 

Copyright 2013-2020  高陵经济网 版权所有 京ICP备2022016840号-34
 

营业执照
 

联系邮箱:920 891 263@qq.com     glxcb.cn    All Rights Reserved