zipWith
Combine two arrays element-by-element using a merge function.
arr1(required): first arrayarr2(required): second arrayfn(required): lambda(elem1, elem2) -> combined
utlx
zipWith([1, 2, 3], [10, 20, 30], (a, b) -> a + b) // [11, 22, 33]