时间:2021-05-26
Testing Properties
To check whether an object has a property with a given name. You can do this with the in operator, with thehasOwnProperty()andpropertyIsEnumerable()methods,
在JS中判断一个对象是否包含某个属性,可以使用in,hasOwnProperty() and propertyIsEnumerable()
or simply by querying the property.
或者直接使用查询属性。
in--It returns true if the object has an own property or an inherited property
用In,当前对象存在或者有继承,就返回true。
hasOwnProperty() --To test whether that object has an own property with the given name. It returns false for inherited properties
用hasOwnProperty() ,只关心本对象,不关心继承来的属性。
propertyIsEnumerable()--The propertyIsEnumerable() refines the hasOwnProperty() test. It returns true only if the named property is an own property and its enumerable attribute is true.
用propertyIsEnumerable() ,和hasOwnProperty() 这个类似,只是要求 属性可枚举。
Instead of using the in operator it is often sufficient to simply query the property and use !== to make sure it is not undefined
o.x !== undefined; // true: o has a property x
替代In的最简单办法就是 query + !==Undefined
in can distinguish between properties that do not exist and properties that exist but have been set to undefined.
in 有个好处就是还能区分到底属性的值是undefined还是本身就不存在。
以上这篇JS Testing Properties 判断属性是否在对象里的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1.in关键字属性名in对象,用来判断某个属性在对象中是否存在与其严格相等的属性名,返回boolean值属性名必须是字符串或数字varobj={ a:1,
Object的hasOwnProperty()方法返回一个布尔值,判断对象是否包含特定的自身(非继承)属性。判断自身属性是否存在varo=newObject()
JS中复合数组associativearray和对象是等同的,判断一个key是否存在于数组中(或对象是否包含某个属性),不能使用ary[key]==unde
本文实例讲述了JS实现判断碰撞的方法。分享给大家供大家参考。具体如下:JS判断碰撞方法:复制代码代码如下:/**判断是否碰撞*@paramobj原对象*@par
方法一:采用对象访问属性的方法,判断属性值是否存在,如果不存在就添加。方法二:采用数组中的reduce方法,遍历数组,也是通过对象访问属性的方法vararr=[