i am getting stucked to convert date from ms (receiving from json) i was recieving the date in json in format below
/Date(1355250600000)/
so that i converted it into ms --->
var d = response.ContributionsDate.replace("/", "").replace("/", "").replace("Date(", "").replace(")", "");
so now its d = 1355250600000
to convert i tried the code below--->
var date = new Date(d);
alert(date);
but did not work (invalid date
), if anyone have any idea about date parsing, help me