Gives values present in both arrays.
Similar: union, intersection, difference, symmetricDifference.
Similar: isUnique, isDisjoint, intersection.
This is part of package extra-array.
This is browserified, minified version of @extra-array/intersection.
It is exported as global variable array_intersection.
CDN: unpkg, jsDelivr.
array.intersection(x, y, [fc], [fm]);
// x: an array
// y: another array
// fc: compare function (a, b)
// fm: map function (v, i, x)
⏱️ Compare function => O(n²).
const array = require("extra-array");
var x = [1, 2, 3, 4];
var y = [2, 3, 5];
array.intersection(x, y);
// [ 2, 3 ]
var y = [-2, -3, -5];
array.intersection(x, y, (a, b) => Math.abs(a) - Math.abs(b));
// [ 2, 3 ]
array.intersection(x, y, null, v => Math.abs(v));
// [ 2, 3 ]