码迷,mamicode.com
首页 > Web开发 > 详细

JS 判断对象中是否具有指定数据

时间:2020-07-26 15:48:54      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:zhang   名称   字符   prope   highlight   cts   布尔值   http   org   

hasOwnProperty() 方法会返回一个布尔值,指示对象自身属性中是否具有指定的属性(也就是,是否有指定的键)。

语法

obj.hasOwnProperty(prop)    //prop  要检测的属性的 String 字符串形式表示的名称,或者 Symbol返回值  true 或者 false

查看 Demo

    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

 

 

 

JS 判断对象中是否具有指定数据

标签:zhang   名称   字符   prope   highlight   cts   布尔值   http   org   

原文地址:https://www.cnblogs.com/banyuege/p/13379803.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!