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.
| ||||
|
feedback
|
|
The following returns the number of milliseconds since the epoch.
| |||||||||||||||||||
feedback
|
I like it, because it is small. | |||||||||||
feedback
|
|
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):
| |||||
feedback
|
| |||||||||||
feedback
|
| ||||
|
feedback
|
| |||||||||||
feedback
|
|
The
To get the Unix timestamp such as the one returned by PHP
| |||
|
feedback
|
| |||||||||||||||
feedback
|
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 at 20:26