underscore幾個數組的方法【3】

又是一天過去,代碼讓本身常懷念吧!javascript

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標題文檔</title>
<script type="text/javascript" src="underscore.js"></script>
<script>
    
        /** first():返回數組的第一個元素。若是設置可選項n的值,將返回一個包含前n項元素的新數組。 last(): 返回數組的最後一個元素。若是設置了可選項n的值,將返回一個包含後n項元素的新數組。 */
        var num=[1,2,3,4,5]; console.log(_.first(num,3)); console.log(_.last(num,4)); /* indexOf():返回value值在數組array中首次出現的位置 lastIndexOf返回value值在數組array中最後一次出現的位置 */ num=[1,2,3,4,5,4,3,2,1]; console.log(_.indexOf(num,3));//2
        console.log(_.lastIndexOf(num,4))//5
        
        
        /* without():刪除數組的某個元素 union():鏈接數組 */ console.log(_.without(num,4));//[1,2,3,5,3,2,1]
        console.log(_.union([1,2,3],[4,5,6]));//[1,2,3,4,5,6]
</script>
</head>

<body>
</body>
</html>
相關文章
相關標籤/搜索