How can I get a timestamp in JavaScript?
Something similar to Unix's timestamp, that is, a single number that represents the current time and date. Either as a number or a string.
|
How can I get a timestamp in JavaScript? Something similar to Unix's timestamp, that is, a single number that represents the current time and date. Either as a number or a string. |
||||
| show 7 more comments |
|
The following returns the number of milliseconds since the epoch.
|
|||||||||||||||||||||
|
I like it, because it is small. |
|||||||||||||||||||||
|
|
JavaScript works with the number of milliseconds since the epoch whereas most other languages work with the seconds. You could work with milliseconds but as soon as you pass a value to say PHP, the PHP native functions will probably fail. So to be sure I always use the seconds, not milliseconds. This will give you a Unix timestamp (in seconds):
This will give you the milliseconds since the epoch (not Unix timestamp):
|
|||||||
|
|
|||||||||||||||
|
|
you all do it too complicated. how about simplicity?
to get it working in IE you could do this:
|
|||||||||
|
|
Just to add up, here's a function to return a timestamp string in Javascript. Example: 15:06:38 PM
|
|||||||||||||
|
|
|||||||
|
|
The
To get the Unix timestamp such as the one returned by PHP
|
|||
|
jQuery provides its own method to get the timestamp:
(besides it just implements |
|||
|
|
|
Any browsers not supported Date.now, you can use this for get current date time:
|
|||
|
|
|
Here is a simple function to generate timestamp in the format: mm/dd/yy hh:mi:ss function getTimeStamp() { var now = new Date(); return ((now.getMonth() + 1) + '/' + (now.getDate()) + '/' + now.getFullYear() + " " + now.getHours() + ':' + ((now.getMinutes() < 10) ? ("0" + now.getMinutes()) : (now.getMinutes())) + ':' + ((now.getSeconds() < 10) ? ("0" + now.getSeconds()) : (now.getSeconds()))); } |
|||
|
|
|
|||||||||||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
Javascript timestamp. Bravo! – msanford May 16 '12 at 20:26