My javascript Date received like this.
trip.Date: "/Date(1426530600000)/"
How can i convert this to Date format
I tried this working:
var dt = new Date(1426530600000); // output: Tue Mar 17 2015 00:00:00 GMT+0530 (India Standard Time)
Is there any other predefined methods to convert this "/Date(1426530600000)/"