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


underscore.js _.last()用法及代碼示例


Underscore.js是一個JavaScript庫,即使不使用任何內置對象,它也提供了許多有用的函數,例如Map,過濾器,調用等。
_.last()用於顯示數組的最後一個元素。它通常用於通過將其分成2個數組來分離數組的元素。一個僅包含最後一個元素,另一個包含除最後一個元素之外的所有元素。

用法:

_.last( array, [n] ) 

參數:該函數接受下麵列出的兩個參數:


  • array:此參數用於保存數組元素。
  • n:此參數用於保存最後一個元素。

返回值:它返回數組的最後一個元素。

將數字數組傳遞給_.last()函數:._last()函數將列表中的元素一個接一個地忽略,並忽略它們。它僅從數組中獲取最後一個元素並返回它。

例:

<!DOCTYPE html> 
<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(_.last([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])); 
        </script> 
    </body> 
</html>

輸出:

將字母/單詞數組傳遞給_.last()函數:._last()函數將列表中的元素一個接一個地忽略,並忽略它們。它不能區分數字和單詞數組。它僅從數組中獲取最後一個元素並返回它。然後最後是console.log()將顯示最後一個元素。

例:

<!DOCTYPE html> 
<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(_.last(['html', 'css', 'js', 
                        'ajax', 'php', 'node.js'])); 
        </script> 
    </body> 
</html>                    

輸出:

將特殊字符數組傳遞給_.last()函數:._last()函數將列表中的元素一個接一個地忽略,並忽略它們。它還不能區分特殊字符數組,數字數組或單詞數組。它僅從數組中獲取最後一個元素並返回它。

例:

<!DOCTYPE html> 
<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(_.last(['!', '@', '#', '$', '%', '^'])); 
        </script> 
    </body> 
</html>                    

輸出:

將異構數組傳遞給_.last()函數:異構數組是包含所有元素的數組。它也將以相同的方式工作。由於數組的所有元素都包含在內,因此它們被視為字符元素。這就是_.initial()不區分數字,字符和特殊字符數組的原因。

例:

<!DOCTYPE html> 
<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(_.last(['1', 'javascript',  
                        '#', '2', 'underscore', '^'])); 
        </script> 
    </body> 
</html>                    

輸出:

注意:這些命令在Google控製台或Firefox中不起作用,因為需要添加這些尚未添加的其他文件。因此,將給定的鏈接添加到您的HTML文件,然後運行它們。

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


相關用法


注:本文由純淨天空篩選整理自Sakshi98大神的英文原創作品 Underscore.js | _.last() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。