Transposing a 2D-array in JavaScript

后端 未结 23 3362
难免孤独
难免孤独 2020-11-22 01:40

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

23条回答
  •  说谎
    说谎 (楼主)
    2020-11-22 02:14

    If using RamdaJS is an option, this can be achieved in one line: R.transpose(myArray)

提交回复
热议问题