Function zipWith

  • 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).

    Type Parameters

    • T extends any[]
    • S

    Parameters

    • Optional Rest...arrays: (T | ((...args: any[]) => S))[]

      The arrays to process.

    Returns S[]

    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]