Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm sure there's a reason I have to add three zeros to every Unix timestamp in JavaScript in order to get the correct date. Can you tell me why? Is it as simple as milliseconds since the epoch vs. seconds?

share|improve this question
1  
Because they use different units of measurement? – spender Jan 13 '11 at 2:27
Thanks everyone. I knew it had to be something logical. My next question will be as to what might be the design decisions around milliseconds vs. seconds given the semi-inconsistency. – editor Jan 13 '11 at 2:30
How about you first upvote helpful answers and accept the answer that best solved your question? – Phrogz Jan 13 '11 at 2:31
Of course! After waiting through the bulk of the wait period (you can't accept answers right away), I was away from my computer for a short period. – editor Jan 13 '11 at 2:55
The best part is that by the time I just accepted my answer, some community members had helped me choose :) – editor Jan 13 '11 at 2:55

3 Answers

up vote 8 down vote accepted

Because Javascript uses milliseconds internally, while normal UNIX timestamps are usually in seconds.

share|improve this answer

Javascript uses the number of milliseconds since epoch. Unix timestamp is seconds since epoch.

Hence, the need to convert Unix timestamp into millseconds before using it in Javascript

share|improve this answer

Unix time is the number of seconds since the epoch (1 Jan 1970). In Javascript, the Date object expects the number of milliseconds since the epoch, hence the 1000-fold difference.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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