Zip multiple arrays together into an array of tuples
Arrays to zip together
Array of tuples where each tuple contains one element from each input array
zip([1, 2, 3], ['a', 'b', 'c']) // [[1, 'a'], [2, 'b'], [3, 'c']]zip([1, 2], ['a', 'b'], [true, false]) // [[1, 'a', true], [2, 'b', false]] Copy
zip([1, 2, 3], ['a', 'b', 'c']) // [[1, 'a'], [2, 'b'], [3, 'c']]zip([1, 2], ['a', 'b'], [true, false]) // [[1, 'a', true], [2, 'b', false]]
Zip multiple arrays together into an array of tuples