![]() |
VOOZH | about |
Lodash _.zipWIth() method is used to combine arrays into one array by applying a function in the same value at the same index of arrays first the function is applied on the first value of the array and then the returned value is added into a new array first value and same for the second, third and so on. If you don't pass the function it will simply work as zip.
_.zipWith(arrays, [iteratee=_.identity]);Example 1: In this example, we are getting the sum of elements of the given array according to the function passed in the lodash _.zipWith() method.
Output:
[ 110, 220, 330 ]Example: In this example, we are getting the concatenation of elements of the given array according to the function passed in the lodash _.zipWith() method.
Output:
[ 'Rahul Sharma', 'Ram Kumar', 'Aditya Verma' ]Example: In this example, we are getting the same array as the given array because we are not passing any custom function in the lodash _.zipWith() method.
Output:
[ [ 10, 100, 1000 ], [ 20, 200, 2000 ], [ 30, 300, 3000 ] ]Note: This will not work in normal JavaScript because it requires the library lodash to be installed.