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


underscore.js _.isSet()用法及代码示例


Underscore.js 是一个 JavaScript 库,它使对数组、字符串、对象的操作变得更加容易和方便。 _.isSet() 函数用于检查给定对象是否是 javascript 设置的。链接 underscore.js CDN 时,“_” 作为全局变量附加到浏览器。

用法:

_.isSet(object);

参数:

  • object: 它是任何 JavaScript 对象,例如数组、字符串、映射、集合等。

返回:它返回布尔值。如果对象是 JavaScript 集,则函数返回 true,否则返回 false。

为了更好地理解该函数,下面给出了一些示例。

注意:在浏览器中运行代码之前需要链接UnderScore.js的CDN。

示例 1:当给定 Set 时,输出为 True。

html


<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charMap="UTF-8"> 
  <meta name="viewport" 
        content="width=device-width, initial-scale=1.0"> 
  <title>Document</title> 
  <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >  
  </script>  
</head> 
<body> 
  <script> 
    //creating a set using constructor 
    var obj= new Set(); 
    //using the underscore.js function _.isSet() 
    var isSet= _.isSet(obj); 
    console.log(isSet) 
    //If the given object is Set it prints the object is set 
    if(isSet) 
    console.log(`The ${obj} is the Set of Javascript.`) 
    else 
    console.log(`The ${obj} is not the Set of Javascript.`) 
  </script> 
</body> 
</html>

输出:

示例 2:当给定一个数组时,它返回 False。

html


<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charMap="UTF-8"> 
  <meta name="viewport" 
        content="width=device-width, initial-scale=1.0"> 
  <title>Document</title> 
  <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >  
  </script>  
</head> 
<body> 
  <script> 
    //creating a array of size 2 using constructor 
    var obj= new Array(2); 
    //filling array with value 10 
    obj.fill(10); 
    //using the underscore.js function _.isSet() 
    var isSet= _.isSet(obj); 
    console.log(isSet) 
    //If the given object is Set it prints the object is Set. 
    if(isSet) 
    console.log(`The ${obj} is the Set of Javascript.`) 
    else 
    console.log(`The ${obj} is not the Set of Javascript.`) 
  </script> 
</body> 
</html>

输出:



相关用法


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