We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Gives values of an array present in another.
array.intersection(x, y, [fn]); // x: an array // y: another array // fn: compare function (a, b)
const array = require('extra-array'); array.init([1, 2, 3]); // [1, 2] array.init([1]); // []