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