当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。