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


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


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

用法:

_.isSet(object);

Parameters: 

  • 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。