當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。