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

I am storing time in a MySQL database as a Unix timestamp and that gets sent to some Javascript, how would I get just the time out of it? Ex. HH/MM/SS

share|improve this question

11 Answers

up vote 266 down vote accepted
// create a new javascript Date object based on the timestamp
// multiplied by 1000 so that the argument is in milliseconds, not seconds
var date = new Date(unix_timestamp*1000);
// hours part from the timestamp
var hours = date.getHours();
// minutes part from the timestamp
var minutes = date.getMinutes();
// seconds part from the timestamp
var seconds = date.getSeconds();

// will display time in 10:30:23 format
var formattedTime = hours + ':' + minutes + ':' + seconds;

For more information regarding the Date object, please refer to this page on W3Schools or this page from the JavaScript 1.5 reference.

share|improve this answer
13  
UNIX timestamps are expressed in seconds—but JavaScript works in milliseconds! I don't think the above code will work correctly. – Steve Harrison May 11 '09 at 8:39
31  
@nickf multiplications are trivial on modern CPUs - the string concatenation will require a lot more work! – Alnitak Apr 19 '11 at 19:59
2  
@Alnitak - yeah, good point! I dunno wtf I was thinking... – nickf Apr 19 '11 at 22:43
23  
@GuyMontag: Computers and children don't operate the same way. – styfle Feb 16 '12 at 21:55
7  
Actually it will display time in '10:2:2' format, since it does not add an extra 0 before values below 10. – Fireblaze Oct 4 '12 at 14:47
show 3 more comments

JavaScript works in milliseconds, so you'll first have to convert the UNIX timestamp from seconds to milliseconds.

var date = new Date([UNIX Timestamp] * 1000);
// Manipulate JavaScript Date object here...

Steve

share|improve this answer
function timeConverter(UNIX_timestamp){
 var a = new Date(UNIX_timestamp*1000);
 var months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
     var year = a.getFullYear();
     var month = months[a.getMonth()];
     var date = a.getDate();
     var hour = a.getHours();
     var min = a.getMinutes();
     var sec = a.getSeconds();
     var time = date+','+month+' '+year+' '+hour+':'+min+':'+sec ;
     return time;
 }
share|improve this answer
for HH/MM/SS just use last three variables and this is time will be in your local time but if you want to get the UTC time just use the getUTC methods. Here's the code. – shomrat May 21 '11 at 0:52

I'm partial to Jacob Wright's Date.format() library, which implements JavaScript date formatting in the style of PHP's date() function.

new Date(unix_timestamp * 1000).format('h:i:s')
share|improve this answer
Downvoter care to comment? – Brad Koch Oct 31 '12 at 21:46
2  
this should be on top – TomTom Jan 14 at 12:09
Best answer imo – Joel Murphy Mar 29 at 17:57
Excellent answer and makes things a lot easier! – Pogrindis Apr 14 at 21:58

UNIX timestamp is number of seconds since 00:00:00 UTC on January 1, 1970 (according to Wikipedia).

Argument of Date object in Javascript is number of miliseconds since 00:00:00 UTC on January 1, 1970 (according to W3Schools Javascript documentation).

See code below for example:

    function tm(unix_tm) {
        var dt = new Date(unix_tm*1000);
        document.writeln(dt.getHours() + '/' + dt.getMinutes() + '/' + dt.getSeconds() + ' -- ' + dt + '<br>');

    }

tm(60);
tm(86400);

gives:

1/1/0 -- Thu Jan 01 1970 01:01:00 GMT+0100 (Central European Standard Time)
1/0/0 -- Fri Jan 02 1970 01:00:00 GMT+0100 (Central European Standard Time)
share|improve this answer

Another way - from iso date.

var timestamp = 1293683278;
var date = new Date(timestamp*1000);
var iso = date.toISOString().match(/(\d{2}:\d{2}:\d{2})/)
alert(iso[1]);
share|improve this answer

The problem with the aforementioned solutions is, that if hour, minute or second, has only one digit (i.e. 0-9), the time would be wrong, e.g. it could be 2:3:9, but it should rather be 02:03:09.

According to this page it seems to be a better solution to use Date's "toLocaleTimeString" method.

share|improve this answer

Take a look at PHP's date function.

share|improve this answer
1  
If you're down-voting me because my solution is in PHP, then take a look a second look at the question. He's not asking it to be in JavaScript. Furthermore, there's a PHP tag in there. – Ionuț G. Stan May 11 '09 at 8:57
1  
@Ionut G. Stan: "...and that gets sent to some Javascript, how would I get just the time out of it?". It sounds to me like he wants the answer in JavaScript. The only place PHP is even mentioned is in a (in my opinion, misplaced) tag. Finally, he's marked one of the JavaScript answers as his accepted answer. – Steve Harrison May 11 '09 at 10:14
@Steve, in my opinion, it could have been MySQL as well. He didn't mentioned the place where he wants the transformation and at the time I answered, I couldn't have a clue what kind of answer he'll accept. – Ionuț G. Stan May 11 '09 at 10:35
@Ionut G. Stan: Yes, I agree that the question is a bit ambiguous. – Steve Harrison May 11 '09 at 10:46
function timeConverter(UNIX_timestamp){
 var a = new Date(UNIX_timestamp*1000);
     var hour = a.getUTCHours();
     var min = a.getUTCMinutes();
     var sec = a.getUTCSeconds();
     var time = hour+':'+min+':'+sec ;
     return time;
 }
share|improve this answer
// Format value as two digits 0 => 00, 1 => 01
function twoDigits(value) {
   if(value < 10) {
    return '0' + value;
   }
   return value;
}

var date = new Date(unix_timestamp*1000);
// display in format HH:MM:SS
var formattedTime = twoDigits(date.getHours()) 
      + ':' + twoDigits(date.getMinutes()) 
      + ':' + twoDigits(date.getSeconds());
share|improve this answer

http://www.esqsoft.com/javascript_examples/date-to-epoch.htm

you need to ParseInt otherwise it wouldn't work:


if(!window.a) window.a = new Date();
   var mEpoch = parseInt(UNIX_timestamp);
   if(mEpoch<10000000000) mEpoch *= 1000; 
   ------
   a.setTime(mEpoch);
   var year = a.getFullYear();
   ...
   return time;
share|improve this answer

protected by Community Aug 17 '12 at 11:00

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.