I have the following JS code:
var response = loadXMLDoc();
var dataset = response.data;
alert(response);
alert (dataset);
"alert(response)" prints this:
{"labels":["-inf - 10","10 - 20","20 - 30","30 - 40","40 - 50","50 - 60","60 - 70","70 - 80","80 - 90","90 - 100","100 - 110","110 - 120","120 - 130","130 - 140","140 - 150","150 - 160","160 - +inf"],"data":[3,8,7,3,7,6,6,7,5,4,10,7,4,4,7,2,0],"count":16}
while "alert(dataset)" gives "undefined". I have tried to use
var dataset = response["data"];
but it did not work as well. I want to get the data array from the JSON object. How can i do that. Thanks