Creates an array of grouped elements, where the first element contains first elements of each array.
Arrays to zip
Zipped array
zip([1,2], ['a','b']); // [[1,'a'], [2,'b']] Copy
zip([1,2], ['a','b']); // [[1,'a'], [2,'b']]
1.2.0
Creates an array of grouped elements, where the first element contains first elements of each array.