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

    Parameters

    • arrays: T[][]

      The arrays to process.

    • Optional iteratee: Function

      The function to combine grouped values.

      Optional

    Returns T[]

    Returns the new array of grouped elements.

    Since

    5.7.0

    See

    [[unzip]],[[unzipWith]],[[zip]],[[zipObject]],[[zipObjectDeep]],[[zipWith]]

    Example

    zipWith([1, 2], [10, 20], [100, 200], (a, b, c) => a + b + c)
    // => [111, 222]