Like zip, but accepts a function to combine elements.
zip
Arrays to zip
Combiner function
Array of combined results
zipWith([1,2],[3,4], (a,b)=>a+b); // [4,6] Copy
zipWith([1,2],[3,4], (a,b)=>a+b); // [4,6]
1.2.0
Like
zip
, but accepts a function to combine elements.