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


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


_.isUndefined()函数:

  • 它检查传递给它的参数是否未定义。
  • 如果传递的参数未定义,则返回true,否则返回false。
  • 我们甚至可以将window元素传递给它。

用法:

_.isUndefined(value)

参数:
它仅采用一个参数,即需要检查的值或变量。


返回值:
如果传递的值或参数未定义,则返回true,否则返回false。

例子:

  1. 将变量传递给_.isUndefined()函数:
    _.isUndefined()函数采用传递给它的参数。因此,这里将检查传递的变量“ a”。由于“ a”的值之前定义为10,因此它是一个已定义的变量。因此,输出将为假。
    <!-- 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(_.isUndefined(a)); 
        </script> 
    </body> 
        
    </html>

    输出:

  2. 将数字传递给_.isUndefined()函数:
    如果我们将数字传递给_.isUndefined()函数,则它将检查该数字是否未定义。既然如此,我们知道所有数字都已定义。因此,答案将是错误的。
    <!-- 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(_.isUndefined(10)); 
        </script> 
    </body> 
        
    </html>

    输出:

  3. 将“undefined”传递给_.isUndefined()函数:
    _.isUndefined()函数采用传递给它的元素“undefined”。由于传递的参数是不确定的,因此输出为true。
    <!-- 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(_.isUndefined(undefined)); 
        </script> 
    </body> 
        
    </html>

    输出:

  4. 将missingVariable传递给_.isUndefined()函数:
    在这里,我们传递“ window.missingVariable”作为参数。但是这里我们没有定义任何变量。因此,missingVariable没有任何价值。因此,它是不确定的。输出为true。
    <!-- 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(_.isUndefined(window.missingVariable)); 
        </script> 
    </body> 
        
    </html>

    输出:

注意:这些命令在Google控制台或firefox中将无法使用,因为需要添加这些尚未添加的其他文件。
因此,将给定的链接添加到您的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 | _.isUndefined() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。