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


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


_.isNull() 函数:

  • 它用于查找对象的值是否为空。
  • 如果对象具有空值,则输出将为真,否则为假。
  • 我们甚至可以在这个函数中进行加法、减法等操作。

用法:

_.isNull(object)

参数:
它只需要一个参数,即需要测试的对象。

返回值:
如果对象具有 null 值,则返回 true,否则返回 false。



例子:

1.在_.isNull()函数中传递一个数字:
_.isNull() 函数接受传递给它的参数,然后检查对象是否具有空值。在这种情况下,由于值是定义的数字 “10”,所以输出不为空。因此,输出将是错误的。

HTML


<!-- Write HTML code here -->
<html>
    
<head>
    <script src = 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
    </script>
</head>
    
<body>
    <script type="text/javascript">
        var a=10;
        console.log(_.isNull(10));
    </script>
</body>
    
</html>

输出:

2. 将 “null” 传递给 _.isNull() 函数:
因为这里我们已经通过了 “null”,所以我们不需要检查对象。我们知道传递给 _.isNull() 函数的值本身的值为 “null”。因此,输出将为真。

HTML


<!-- Write HTML code here -->
<html>
    
<head>
    <script src = 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
    </script>
</head>
    
<body>
    <script type="text/javascript">
        console.log(_.isNull(null));
    </script>
</body>
    
</html>

输出:

3. 将 undefined” 传递给 _.isNull() 函数:
_.isNull() 函数接受传递给它的参数,这里是 “undefined”。我们知道,如果有任何东西是未定义的,那么它的值就是 null。因此,答案是正确的。



HTML


<!-- Write HTML code here -->
<html>
    
<head>
    <script src = 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
    </script>
</head>
    
<body>
    <script type="text/javascript">
        console.log(_.isNull(undefined));
    </script>
</body>
    
</html>

输出:

4、对_.isNull()函数的输出进行操作:
首先,我们将上述两个示例 (2, 3) 的输出直接存储在变量 a 和 b 中,然后我们对两个结果进行了加法运算。最后,将其存储在第三个变量中。由于 _.isNull() 的输出在我们传递时为 false,在传递 null 时为 true,因此 false 存储在 ‘a’ 变量中,true 存储在 ‘b’ 变量中。现在,如果我们对两个 ‘a’, ‘b’ 变量执行加法 (+) 操作,那么我们将得到 true,因为 ‘b’ 为 true。因此 ‘c’ 变量将变为 1。

HTML


<!-- Write HTML code here -->
<html>
    
<head>
    <script src = 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
    </script>
</head>
    
<body>
    <script type="text/javascript">
        var a = _.isNull(undefined);
        var b = _.isNull(null);
        var c = a + b;
        console.log(a);
        console.log(b);
        console.log(c);
    </script>
</body>
    
</html>

输出:

笔记:这些命令在 Google 控制台或 Firefox 中不起作用,因为需要添加他们没有添加的这些附加文件。
因此,将给定的链接添加到您的 HTML 文件中,然后运行它们。

链接如下:

HTML


<!-- Write HTML code here -->
<script type="text/javascript" src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>



相关用法


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