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
You could use underscore.js
_.zip.apply(_, [[1,2,3], [1,2,3], [1,2,3]])