苏北网
当前位置:首页>体育 >

即时看!hasOwnProperty()是什么?hasOwnProperty()用法详解

时间 2023-07-05 16:27:03 来源:驱动中国网  

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;

}

标签: 指定属性 检查对象属性 计算机字符串

相关阅读RELEVANT

  • 版权及免责声明:

内容搜集整理于网络,不代表本站同意文章中的说法或者描述。文中陈述文字和内容未经本站证实,其全部或者部分内容、文字的真实性、完整性、及时性本站不做任何保证或者承诺,并且本站对内容资料不承担任何法律责任,请读者自行甄别。如因文章内容、版权和其他问题侵犯了您的合法权益请联系邮箱:5 146 761 13 @qq.com 进行删除处理,谢谢合作!