The array of grouped elements to process.
Optional
iteratee: FunctionThe function to combine regrouped values.
Returns the new array of regrouped elements.
5.7.0
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).