I\'ve got an array of arrays, something like:
[ [1,2,3], [1,2,3], [1,2,3], ]
I would like to transpose it to get the following
If using RamdaJS is an option, this can be achieved in one line: R.transpose(myArray)
R.transpose(myArray)