当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Underscore.js _.has()用法及代码示例


_.has()函数用于检查给定对象是否包含给定键。

用法:

_.has(object, key)

参数:该函数接受上述和以下所述的两个参数:

  • object:它包含对象元素。
  • key:它包含需要在给定对象中检查的 key 。

返回值:如果键存在于对象中,则返回布尔值True,否则返回False。

下面的示例说明了Underscore.js中的_.has()函数:示例1:



<!DOCTYPE html> 
<html> 
  
<head> 
    <script type="text/javascript" src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> 
    </script> 
</head> 
  
<body> 
    <script type="text/javascript"> 
  
        var hasFn = _.has({ 
            Name:'Ashok', 
            Age:32, 
            Email:'ashok@gfg.com' 
        }, 'Age'); 
  
        console.log(hasFn); 
    </script> 
</body> 
  
</html>

输出:

范例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <script type="text/javascript" src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> 
    </script> 
</head> 
  
<body> 
    <script type="text/javascript"> 
  
        var info = { 
            Company:'GeeksforGeeks', 
            Address:'Noida', 
            Contact:'+91 9876543210' 
        }; 
  
        console.log(_.has(info, 'Company')); 
        console.log(_.has(info, 'Cont')); 
    </script> 
</body> 
  
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Underscore.js | _.has() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。