I am trying to read data which I have received from a JSON object in the following format:
var series = [{"Data":{"ArrayData":null,"DoubleArrayData":["\/Date(1481846400090)\/",1,"\/Date(1481846400100)\/",1,"\/Date(1481846400110)\/",1,"\/Date(1481846400120)\/",1],"Points":null,"SeriesData":null}, {"Data": ... }, {"Data": ... }];
I have tried doing the following in order to read the Data in the "DoubleArrayData" field:
var ns = series[0].Data[1].DoubleArrayData[0];
However it returns undifined. What am I doing wrong?