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.

link|improve this question

84  
1st result for "Javascript timestamp" – Sam152 Mar 6 '10 at 10:43
1  
for "string to timestamp javascript" too :-) – firian Oct 17 '11 at 9:43
3  
Also first for "1st result for "Javascript timestamp"" – thsutton Mar 12 at 3:51
This was too meta not to mention, even on such an old post: @Sam152 this page has since become the first result for Javascript timestamp. Bravo! – msanford May 16 at 20:26
feedback

9 Answers

up vote 460 down vote accepted

The following returns the number of milliseconds since the epoch.

new Date().getTime();
link|improve this answer
128  
If you want it similar to Unix timestamp you probably want it in seconds : Math.round(new Date().getTime() / 1000) – radius Jun 30 '10 at 14:39
23  
I like +new Date(), more badass, or even if it's just to confuse the JS newbies. (coherces Date object into Number) – infinity Jul 23 '10 at 19:16
Should it be in UTC? If so how is it converted? – Adam Aug 9 '10 at 19:30
19  
Date.now() is better. It does not create an unnecessary date object. – Olof Larsson May 27 '11 at 18:00
32  
Date.now() is from JavaScript 1.5, and is not supported on IE 8. – Søren Løvborg Jul 14 '11 at 18:55
feedback
+new Date;

I like it, because it is small.

link|improve this answer
1  
I like that, however +new Date() is shorter. Do you mean (+new Date()) as idiom? – Tino Mar 19 '11 at 21:31
It is not idiom or something like that, it must be usual type conversion. – Andy Apr 9 '11 at 8:09
1  
While we're at it, the parens are superfluous: var ms = +new Date; – Phrogz Mar 5 at 23:49
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):

var unix = Math.round(+new Date()/1000);

This will give you the milliseconds since the epoch (not Unix timestamp):

var milliseconds = new Date().getTime();
link|improve this answer
PHP should work fine with milliseconds, as it uses them itself with the microtime() function. – Nico Burns Sep 10 '11 at 0:34
While microtime() is present, most time related functions in php expect the timestamp to be in seconds and not milliseconds. What's more is that microtime() returns a float (if you pass true) where the decimal part is the fractions of a second (accurate to the microsecond), while newDate().getTime() returns an int where it just counts milliseconds since the epoch. For example (php) if you were to call floor(microtime(true)) this would be effectively the same as calling time() which is in seconds and not micro or milliseconds. Dividing by 1000 as above is the easiest solution to this. – greggory.hz May 2 at 21:32
feedback
var timestamp = Number(new Date()); // current time as number
link|improve this answer
feedback
var $time = Date.now || function() {
  return +new Date;
};

$time()
link|improve this answer
1  
Why the || operator? Is Date.now() not available on all browsers? – Chris Noe Oct 22 '08 at 0:58
Apparently not, I found the code in modulejs – Staale Nov 4 '08 at 8:13
10  
Date.now() is from JavaScript 1.5, and is not supported on IE 8. – Søren Løvborg Jul 14 '11 at 18:54
feedback
new Date().valueOf()// returns the number of milliseconds since the epoch
link|improve this answer
This equals +new Date.. :) – kenansulayman Nov 1 '11 at 20:01
feedback
time = Math.round(((new Date()).getTime()-Date.UTC(1970,0,1))/1000);
link|improve this answer
2  
This is wrong. The getTime() method already returns the number of milliseconds since the UNIX epoch, so this calculation will actually screw things up. – Skone Jun 16 '11 at 20:06
1  
@Skone technically nothing is screwed up. Date.UTC(1970,0,1) will always evaluate to 0, no matter what time zone the user is in. still, I'd say this is a bad answer because of it. – Kip Aug 29 '11 at 17:17
@Kip Good point. We're both getting at the same thing though, the additional arithmetic here is unnecessary. – Skone Sep 21 '11 at 16:00
feedback

The Date.getTime() can be very used with a little tweak:

The value returned by the getTime method is the number of milliseconds since 1 January 1970 00:00:00 UTC.

To get the Unix timestamp such as the one returned by PHP time() function, divide this number by 1000, round or floor if necessary:

(new Date()).getTime() / 1000
link|improve this answer
feedback
    var d=new Date();
    var timestamp = new Array(2);
    timestamp[1] = d.getDate();
    timestamp[2] = d.getMonth();
    document.write(timestamp[1]);
    switch (timestamp[2])
    {
        case 0: document.write("Jan");
        break;

        case 1: document.write("Feb");
        break;

        case 2: document.write("Mar");
        break;

        case 3: document.write("Apr");
        break;

        case 4: document.write("May");
        break;

        case 5: document.write("June");
        break;

        case 6: document.write("July");
        break;

        case 7: document.write("Aug");
        break;

        case 8: document.write("Sept");
        break;

        case 9: document.write("Oct");
        break;

        case 10: document.write("Nov");
        break;

        case 11: document.write("Dec");
        break;
    }
link|improve this answer
17  
wow that's bad. – Xeoncross Nov 29 '11 at 21:38
7  
dude, at least read about arrays in javascript – Andy Jan 1 at 8:54
3  
I admit, the code is trash -- but you guys are pretty jacked up too -36'ing this guy, lol – Authman Apatira Apr 24 at 1:32
This answer is not even on the same subject. – Nikola Petkanski May 2 at 7:10
feedback

protected by Will Nov 18 '10 at 15:45

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.