fast_array_intersect icon indicating copy to clipboard operation
fast_array_intersect copied to clipboard

The fastest javascript array intersection function

Results 1 fast_array_intersect issues
Sort by recently updated
recently updated
newest added

I'm beating you by almost double ;) ![image](https://github.com/user-attachments/assets/878358a3-2263-46f4-8d74-2922227e4ebc) ```js function arrayAndCombiner(a, b) { if (!a.length) { return a; } if (!b.length) { return b; } const bSet = new Set(b);...