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())
輸出:
相關用法
- PHP imagecreatetruecolor()用法及代碼示例
- p5.js year()用法及代碼示例
- d3.js d3.utcTuesdays()用法及代碼示例
- PHP ImagickDraw getTextAlignment()用法及代碼示例
- PHP Ds\Sequence last()用法及代碼示例
- PHP array_udiff_uassoc()用法及代碼示例
- PHP geoip_continent_code_by_name()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP GmagickPixel setcolor()用法及代碼示例
- PHP opendir()用法及代碼示例
- PHP cal_to_jd()用法及代碼示例
- d3.js d3.bisectLeft()用法及代碼示例
- PHP stream_get_transports()用法及代碼示例
- PHP Ds\Deque pop()用法及代碼示例
- PHP SimpleXMLElement children()用法及代碼示例
- p5.js removeElements()用法及代碼示例
- PHP Imagick adaptiveSharpenImage()用法及代碼示例
- PHP XMLWriter endDtdEntity()用法及代碼示例
注:本文由純淨天空篩選整理自tarun007大神的英文原創作品 Collect.js diffAssoc() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。