My AJAX call returns the datetime value as this
/Date(1320120000000-0400)/
How do I convert it to a readable format (e.g. 11/31/2011) using Javascript?
|
My AJAX call returns the datetime value as this
How do I convert it to a readable format (e.g. 11/31/2011) using Javascript? |
||||
|
This is the number of milliseconds since epoch:
However,
Finally note that the |
|||
|
|
This should work You can now format it to a string using, getDay, getMonth,getFullYear methods. |
|||
|
|
|
Calling If you specifically need "11/31/2011", then build a custom string using
More here: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date |
|||
|
|
1320120000000-0400timestamp. The very basic:(new Date(1320120000000)).toString(). – Rob W Oct 3 '11 at 17:54