If I have the following code in Javascript:
var line0 = [["2012-07-01",1.8182],["2012-08-01",1.4000],["2012-09-01",1.7500]];
How can I obtain the first date, which in this case is: "2012-07-01"
Thanks in advance.
If I have the following code in Javascript:
var line0 = [["2012-07-01",1.8182],["2012-08-01",1.4000],["2012-09-01",1.7500]];
How can I obtain the first date, which in this case is: "2012-07-01"
Thanks in advance.