Possible Duplicate:
Convert a Unix timestamp to time in Javascript
Turn a unix timestamp into 2008-07-17T09:24:17Z
How to do that?
Turn a unix timestamp into 2008-07-17T09:24:17Z How to do that? |
|||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Unix time stamp is in seconds since epoch right? You can convert it into milliseconds (by multiplying it by 1000) and passing it to the date constructor like this to convert it to a Date object.
Then you can use the Date APIs to get parts of the date. |
|||
|
|
|
unix timestamp has an accuration of second, so convert to milisecond and pass to Date constructor:
|
|||
|
|
|
As long as it's a valid date string, you should be able to get a Date object out of it using |
|||||||
|