I'm trying to parse a date expressed as "/Date(1459934700000)/"
via jQuery. I use this code :
new Date(parseInt(myDateString.substr(6)))
and get me this date :
Sun Apr 26 1970 02:58:20 GMT+0430 (Iran Standard Time)
But I want to get date such as 4/6/2016 12:45:00 PM
.