zipWith
Array
since 3.8.0
Arguments
- ...Array The arrays to process.
- Function The function to combine grouped values.
Returns
Array the new array of grouped elements.
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).
Example of Lodash _.zipWith
_.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) {
return a + b + c;
});
// => [111, 222]