I would like to dynamicaly regroup each element with same index of multiple (no precise number) arrays with the same length in a array.
Example :
var arrayOfarray =[
['a','b','c','d','e','f'],
['h','i','j','k','l','m'],
]
/*
expectedResult = [['a','h'],['b','i'],['c','j'],['d','k'],['e','l'],['f','m']]
*/
Thank you