Gives values present in both arrays.
Alternatives: compare, map.
This is part of package extra-array.
array.intersectionOn(x, y, [fn], [ths]);
// x: an array
// y: another array
// fn: map function (v, i, x)
// ths: this argument
const array = require('extra-array');
var x = [1, 2, 3, 4];
array.intersectionOn(x, [2, 3, 5]);
// [2, 3]
array.intersectionOn(x, [-2, -3, -5], v => Math.abs(v));
// [2, 3]