i am new to JQuery.I need to convert the below string into following dateTime format.How to achieve this?
string value:
var w = "/Date(1388514600000)/"
Expected Date format Example:-
"Wed Jan 01 2014 00:00:00 GMT+0530 (India Standard Time)"
I need to achieve above without jQuery DatePicker UI and anyother UI?
Is this possible to achieve my Expected value in given string?
i am tried like this:-
var d=date.parse(w);
console.log(d);
output:-
NaN
Any help or an idea will be more helpful?
Thank you.Please give me a suggestion!
how to achieve above in JQuery?