This method is like zip except that it accepts iteratee to specify how grouped values should be combined. The iteratee is invoked with the elements of each group: (...group).
zip
iteratee
Optional
Rest
The arrays to process.
Returns the new array of grouped elements.
3.8.0
unzip, unzipWith, zip, zipObject, zipObjectDeep, zipWith
zipWith([1, 2], [10, 20], [100, 200], (a, b, c) => a + b + c)// => [111, 222] Copy
zipWith([1, 2], [10, 20], [100, 200], (a, b, c) => a + b + c)// => [111, 222]
This method is like
zip
except that it acceptsiteratee
to specify how grouped values should be combined. The iteratee is invoked with the elements of each group: (...group).