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


Collect.js diffAssoc()用法及代碼示例


diffAssoc()函數用於比較兩個給定的集合,並返回給定集合中不存在的值及其索引。如果集合中給定了鍵-值對,它會根據指定的鍵進行比較並返回。

用法:

diffAssoc( collection );

參數:

  • collection:它是給定的集合,其值將與原始數組進行比較。

返回值:它返回給定集合中不存在的值及其索引。

範例1:當數組作為集合給出時



Javascript

// Importing the collect.js module. 
const collect = require('collect.js'); 
let array = ["a", "b", "c", "d", "e"]; 
let arr = ["a", "b", "q"]; 
  
// Making the collec1 
let collec1 = collect(array); 
let collec2 = collect(arr); 
  
// Using diffAssoc() Function 
let aa = collec1.diffAssoc(collec2) 
  
// The output is so because c, d, e 
// are not present in collec2  
// But are present in collec1 
console.log("Output:") 
console.log(aa.all())

輸出:

範例2:給定鍵-值對的對象時。

Javascript

// Importing the collect.js module. 
const collect = require('collect.js'); 
let obj1 = { "a":1, "b":12, "c":3 }; 
let obj2 = { "a":12, "d":2, "c":3 }; 
  
// Making the collec1 
let collec1 = collect(obj1); 
let collec2 = collect(obj2); 
  
// Using diffAssoc() Function 
let aa = collec1.diffAssoc(collec2) 
  
// The output is so because a whose  
// value is 1 and b whose value is 12  
// because are not present in collec2  
// But are present in collec1 
console.log("Output:") 
console.log(aa.all())

輸出:

相關用法


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