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


Lodash _.Intersection()用法及代碼示例


Lodash是一個JavaScript庫,可在underscore.js頂部使用。 Lodash幫助處理數組,字符串,對象,數字等。
_.intersection()方法用於獲取一個或多個數組的交集。與集合論中的交集相同。

用法:

_.intersection([arrays])

參數:它以數組作為參數。

返回值:數組交集後返回數組。

注意:請使用命令安裝lodash模塊npm install lodash在使用下麵給出的代碼之前。



範例1:取兩個數組的交集。

Javascript

// Requiring the lodash library 
const _ = require("lodash"); 
  
// Original array 
let array1 = [1, 2, 4, 3, 4, 4] 
let array2 = [2, 4, 5, 6] 
  
// Using _.intersection() method 
let newArray = lodash.intersection( 
                array1, array2); 
  
// Printing original Array 
console.log("original Array1:", array1) 
console.log("original Array2:", array2) 
  
// Printing the newArray 
console.log("new Array:", newArray)

輸出:

範例2:取兩個以上數組的交集。

Javascript

// Requiring the lodash library 
const _ = require("lodash"); 
  
// Original array 
let array1 = [1, 2, 4, 3, 4, 4] 
let array2 = [2, 4, 5, 6] 
let array3 = [2, 3, 5, 6] 
  
// Using _.intersection() method 
let newArray = _.intersection( 
        array1, array2, array3); 
  
// Printing original Array 
console.log("original Array1:", array1) 
console.log("original Array2:", array2) 
console.log("original Array3:", array3) 
  
// Printing the newArray 
console.log("new Array:", newArray)

輸出:

範例3:數組與空數組的交集。

Javascript

// Requiring the lodash library 
const _ = require("lodash"); 
  
// Original array 
let array1 = [1, 2, 4, 3, 4, 4] 
let array2 = [] 
  
// Using _.intersection() method 
let newArray = lodash 
    .intersection(array1, array2); 
  
// Printing original Array 
console.log("original Array1:", array1) 
console.log("original Array2:", array2) 
  
// Printing the newArray 
console.log("new Array:", newArray) 

輸出:

相關用法


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