I have following kind of data
"val1": [0.31, 0.3069, 0.3038],
"val2": ["2015-01-14", "2015-06-14", "2016-01-14"],
"val3": [0.1, 0.11, 0.11]
I want to create different array which will be as follows
[0.31, "2015-01-14", 0.1],
[0.3069, "2015-06-14", 0.11],
[0.3038, "2016-01-14", 0.11]
How can I create this kind of array using underscore.js ? Can anyone please tell me how to do this.
Thanks