I am bit new in JQuery ,,I have a 2D Array
2DArray =[2.0,6.31]
[3.0,6.09]
[4.0,7.44]
I want to split it into 2 One dimensional Array like this:
[2.0, 3.0, 4.0]
[6.31, 6.09, 7.44]
I have read posts about convert single array into multidimensional array but not vice versa ...
Any suggestion would be helpful