I have the following arrays:
var dates = new Array();
var answers = new Array();
Once Populated, they will be the same length. What I need is an array that pair the same index values of the arrays. Like so:
var pairedArray = new Array();
//pairedArray should have the form: [[dates[0], answers[0]], [dates[1], answers[1]], ...., [dates[n-1], answers[n-1]]]
e.g.
data: [
[Date.UTC(2010, 0, 1), 29.9],
[Date.UTC(2010, 2, 1), 71.5],
[Date.UTC(2010, 3, 1), 106.4]
]
How is this possible given that I have two arrays of the same length, answers and dates that are already populated?
If you know they are always the same length, simply loop through one and add both to the result: