I want to convert one string to JSON Object in my Javascript. When I convert to Json Object the date in the String totally changed
This is my string
var JsonData=[[2013-02-27,787],[2013-02-26,131],[2013-02-02,0],[2013-01-20,8],[2012-12-28,12]]
I am converting to JSON object with the following
var json = eval( JsonData );
Then I get following result in alert
1984,787,1985,131,2009,0,1992,8,1972,12
Can anyone please guide me? How do I solve this?
Now I Got error of following
Timestamp: 3/7/2013 1:10:36 PM
Error: TypeError: this.proxy.getTime is not a function
in somewhere in my javascript..so i am thinking that its beacuse the date is not converted properly in Json Object..is it so??can anyone please guide?