Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
3  
for "string to timestamp javascript" too :-) – firian Oct 17 '11 at 9:43
12  
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 '12 at 20:26
4  
funny thing is, this is now the number one hit for "Javascript timestamp" – nodrog Jun 20 '12 at 15:05
2  
Also first for "Also first for "1st result for "Javascript timestamp""". Is that going to far? – snapfractalpop Jul 4 '12 at 8:01
2  
Also first (and only) for => Also first for "Also first for "1st result for "Javascript timestamp""" :) – Andrej Aug 7 '12 at 13:15
show 7 more comments

13 Answers

up vote 1000 down vote accepted

The following returns the number of milliseconds since the epoch.

new Date().getTime();
share|improve this answer
248  
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
44  
I like +new Date(), more badass, or even if it's just to confuse the JS newbies. (coherces Date object into Number) – adamJLev Jul 23 '10 at 19:16
35  
Date.now() is better. It does not create an unnecessary date object. – Olof Larsson May 27 '11 at 18:00
66  
Date.now() is from JavaScript 1.5, and is not supported on IE 8. – Søren Løvborg Jul 14 '11 at 18:55
18  
Note: according to this benchmark (jsperf.com/date-now-vs-new-date-gettime/4) +new Date() is significantly slower across browsers than either of the other two variants. – Max Leske Jun 28 '12 at 13:01
show 9 more comments
+new Date;

I like it, because it is small.

share|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
4  
While we're at it, the parens are superfluous: var ms = +new Date; – Phrogz Mar 5 '12 at 23:49
4  
I had no idea parens were optional for object constructors. – Erik Reppen Aug 6 '12 at 22:49
54  
This option is a bad idea. It's easily overlooked, looks like a typo, and is in reality relying on a language side-effect. I see bad code. – Gabriel Oct 29 '12 at 15:51
5  
Agreed with @Gabriel. Code like this is a roadblock for developers trying to read your code, at which they will have to stop for a moment to figure it out. Better to write slightly more descriptive code that is intuitive and readable. – JMTyler Nov 30 '12 at 20:09
show 8 more comments

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();
share|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
3  
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 '12 at 21:32
var $time = Date.now || function() {
  return +new Date;
};

$time()
share|improve this answer
2  
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
22  
Date.now() is from JavaScript 1.5, and is not supported on IE 8. – Søren Løvborg Jul 14 '11 at 18:54
2  
Engines which have not been updated to support the Date.now method can work around the absence of it using the following shim: if (!Date.now) { Date.now = function now() { return +(new Date); }; } – Per Quested Aronsson Oct 4 '12 at 7:21
var timestamp = Number(new Date()); // current time as number
share|improve this answer

you all do it too complicated. how about simplicity?

Date.now() /1000 |0

to get it working in IE you could do this:

if (typeof Date.now == "undefined") {
    Date.now = function(){return new Date().getTime()};
}
share|improve this answer
2  
|0 is similar to Math.floor() since it is a bit operation (that does not work with floats). usualy its even faster than Math.floor() since it is not a function call, it is a native javascript operator. – GottZ Aug 24 '12 at 6:53
3  

Just to add up, here's a function to return a timestamp string in Javascript. Example: 15:06:38 PM

function displayTime() {
    var str = "";

    var currentTime = new Date()
    var hours = currentTime.getHours()
    var minutes = currentTime.getMinutes()
    var seconds = currentTime.getSeconds()

    if (minutes < 10) {
        minutes = "0" + minutes
    }
    if (seconds < 10) {
        seconds = "0" + seconds
    }
    str += hours + ":" + minutes + ":" + seconds + " ";
    if(hours > 11){
        str += "PM"
    } else {
        str += "AM"
    }
    return str;
}
share|improve this answer
The OP is asking about an integer timestamp; this is a string representation of the time. – Brad Koch Oct 10 '12 at 19:36
Do you read what he says? He says "Either as a number or a string." – Little Lulu Jan 16 at 16:12
"similar to Unix's timestamp, that is, a single number that represents the current time" – Brad Koch Jan 16 at 19:44
1  
Even though it's not EXACTLY what he wants I guess my post must be useful, for I see some upper votes. – Little Lulu Jan 16 at 23:26
Thank you for this. – Ryan Feb 24 at 18:11
new Date().valueOf()// returns the number of milliseconds since the epoch
share|improve this answer
1  
This equals +new Date.. :) – kenansulayman Nov 1 '11 at 20:01
just do Date.now() – Orlando yesterday

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
share|improve this answer
4  
You don't need the parentheses: new Date().getTime() / 1000 – rynah May 30 '12 at 5:01
4  
You don't need them, but they make code more readable (IMHO). Matter of taste I guess. – johndodo Sep 18 '12 at 7:10

jQuery provides its own method to get the timestamp:

var timestamp = $.now();

(besides it just implements (new Date).getTime() expression)

REF: http://api.jquery.com/jQuery.now/

share|improve this answer

Any browsers not supported Date.now, you can use this for get current date time:

currentTime = Date.now() || +new Date()
share|improve this answer

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()))); }

share|improve this answer
time = Math.round(((new Date()).getTime()-Date.UTC(1970,0,1))/1000);
share|improve this answer
5  
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
3  
@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
@Kip -- if someone ever got stupid and decided the Epoch needs to be "changed" ("broken" would be the proper word ...), that would work. Fortunately, no one is likely to ever get that stupid. – Julie in Austin Jul 4 '12 at 15:09
@JulieinAustin: you underestimate the stupid. :) – johndodo Sep 18 '12 at 8:16
show 1 more comment

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.