This method is like unzip except that it accepts iteratee to specify how regrouped values should be combined. The iteratee is invoked with the elements of each group: (...group).
unzip
iteratee
The array of grouped elements to process.
The function to combine regrouped values.
Rest
Returns the new array of regrouped elements.
3.8.0
const zipped = zip([1, 2], [10, 20], [100, 200])// => [[1, 10, 100], [2, 20, 200]]unzipWith(zipped, add)// => [3, 30, 300] Copy
const zipped = zip([1, 2], [10, 20], [100, 200])// => [[1, 10, 100], [2, 20, 200]]unzipWith(zipped, add)// => [3, 30, 300]
This method is like
unzip
except that it acceptsiteratee
to specify how regrouped values should be combined. The iteratee is invoked with the elements of each group: (...group).