JS 判断对象中是否具有指定数据
2021-01-16 05:14
标签:zhang 名称 字符 prope highlight cts 布尔值 http org 语法 查看 Demo JS 判断对象中是否具有指定数据 标签:zhang 名称 字符 prope highlight cts 布尔值 http org 原文地址:https://www.cnblogs.com/banyuege/p/13379803.htmlhasOwnProperty()
方法会返回一个布尔值,指示对象自身属性中是否具有指定的属性(也就是,是否有指定的键)。obj.hasOwnProperty(prop) //prop 要检测的属性的
String
字符串形式表示的名称,或者 Symbol
。 返回值 true 或者 false var obj = {"user":"zhangsan","password":"123456"};
console.log(obj.hasOwnProperty("user")) //对象中存在user属性 返回true
console.log(obj.hasOwnProperty("password")) //对象中存在password属性 返回true
console.log(obj.hasOwnProperty("name")) //对象中不存在name属性 返回false