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

How can I convert seconds to an HH-MM-SS string using JavaScript?

share|improve this question
See my answer at stackoverflow.com/a/6313008/22470 – powtac Nov 13 '12 at 20:45

9 Answers

up vote 38 down vote accepted

Don't you know datejs? it is a must know.

Using datejs, just write something like:

(new Date).clearTime()
          .addSeconds(15457)
          .toString('H:mm:ss');

--update

Nowadays date.js is outdated and not maintained, so use "Moment.js", which is much better as pointed out by T.J. Crowder.

share|improve this answer
thx but can you show me how it will help me ?? – Yassir Aug 24 '09 at 14:43
sure, I edited my answer. – Cleiton Aug 24 '09 at 15:01
thx for the help :) – Yassir Aug 24 '09 at 16:15
1  
exactly what I'm looking for. Thanks! – huy Jun 9 '10 at 8:02
3  
@Yassir and Cleiton: FWIW, DateJS hasn't been maintained in years, and does have a couple of outstanding bugs (although to my knowledge, they're mostly in regard to parsing and midnight). momentjs seems pretty good, and is currently maintained. – T.J. Crowder Nov 21 '12 at 8:31
show 2 more comments
var totalSec = new Date().getTime() / 1000;
var hours = parseInt( totalSec / 3600 ) % 24;
var minutes = parseInt( totalSec / 60 ) % 60;
var seconds = totalSec % 60;

var result = (hours < 10 ? "0" + hours : hours) + "-" + (minutes < 10 ? "0" + minutes : minutes) + "-" + (seconds  < 10 ? "0" + seconds : seconds);
share|improve this answer
2  
seconds = parseInt(totalSec % 60, 10); – zack Feb 17 '11 at 18:42
4  
+1 for not using a library – Anton Gildebrand Feb 10 at 13:48
You forgot a bunch of var. – Hamish Grubijan Apr 25 at 21:31

I don't think any built-in feature of the standard Date object will do this for you in a way that's more convenient than just doing the math yourself.

hours = totalSeconds / 3600;
totalSeconds %= 3600;
minutes = totalSeconds / 60;
seconds = totalSeconds % 60;
share|improve this answer
yes but you might get this 1:4:43 instead of 01:04:43 !! – Yassir Aug 24 '09 at 14:47
2  
Oh, this just gives you the numbers. I left the formatting as an exercise for the reader. :) – T.J. Crowder Aug 24 '09 at 16:21
Would the recent downvoter like to share why you felt this was "not useful"? – T.J. Crowder Nov 21 '12 at 8:29

This does the trick:

function secondstotime(secs)
{
    var t = new Date(1970,0,1);
    t.setSeconds(secs);
    var s = t.toTimeString().substr(0,8);
    if(secs > 86399)
    	s = Math.floor((t - Date.parse("1/1/70")) / 3600000) + s.substr(2);
    return s;
}

(Sourced from here)

share|improve this answer
var time1 = date1.getTime();
var time2 = date2.getTime();
var totalMilisec = time2 - time1;

alert(DateFormat('hh:mm:ss',new Date(totalMilisec)))

 /* ----------------------------------------------------------
 *  Field        | Full Form          | Short Form
 *  -------------|--------------------|-----------------------
 *  Year         | yyyy (4 digits)    | yy (2 digits)
 *  Month        | MMM (abbr.)        | MM (2 digits)
                 | NNN (name)         |
 *  Day of Month | dd (2 digits)      | 
 *  Day of Week  | EE (name)          | E (abbr)
 *  Hour (1-12)  | hh (2 digits)      | 
 *  Minute       | mm (2 digits)      | 
 *  Second       | ss (2 digits)      | 
 *  ----------------------------------------------------------
 */
function DateFormat(formatString,date){
    if (typeof date=='undefined'){
    var DateToFormat=new Date();
    }
    else{
        var DateToFormat=date;
    }
    var DAY         = DateToFormat.getDate();
    var DAYidx      = DateToFormat.getDay();
    var MONTH       = DateToFormat.getMonth()+1;
    var MONTHidx    = DateToFormat.getMonth();
    var YEAR        = DateToFormat.getYear();
    var FULL_YEAR   = DateToFormat.getFullYear();
    var HOUR        = DateToFormat.getHours();
    var MINUTES     = DateToFormat.getMinutes();
    var SECONDS     = DateToFormat.getSeconds();

    var arrMonths = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
    var arrDay=new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
    var strMONTH;
    var strDAY;
    var strHOUR;
    var strMINUTES;
    var strSECONDS;
    var Separator;

    if(parseInt(MONTH)< 10 && MONTH.toString().length < 2)
        strMONTH = "0" + MONTH;
    else
        strMONTH=MONTH;
    if(parseInt(DAY)< 10 && DAY.toString().length < 2)
        strDAY = "0" + DAY;
    else
        strDAY=DAY;
    if(parseInt(HOUR)< 10 && HOUR.toString().length < 2)
        strHOUR = "0" + HOUR;
    else
        strHOUR=HOUR;
    if(parseInt(MINUTES)< 10 && MINUTES.toString().length < 2)
        strMINUTES = "0" + MINUTES;
    else
        strMINUTES=MINUTES;
    if(parseInt(SECONDS)< 10 && SECONDS.toString().length < 2)
        strSECONDS = "0" + SECONDS;
    else
        strSECONDS=SECONDS;

    switch (formatString){
        case "hh:mm:ss":
            return strHOUR + ':' + strMINUTES + ':' + strSECONDS;
        break;
        //More cases to meet your requirements.
    }
}
share|improve this answer

You can also use below code:

int ss = nDur%60;
nDur   = nDur/60;
int mm = nDur%60;
int hh = nDur/60;
share|improve this answer

You can also use Sugar.

Date.create(180).format('{mm}:{ss}');

This example returns '03:00'.

share|improve this answer
That sounded good !After checking, it does not returns 03:00, but for any value entered, just 00:00. – Ben Sep 22 '12 at 11:57

I've used this code before to create a simple timespan object:

function TimeSpan(time) {
this.hours = 0;
this.minutes = 0;
this.seconds = 0;

while(time >= 3600)
{
	this.hours++;
	time -= 3600;
}

while(time >= 60)
{
	this.minutes++;
	time -= 60;
}

this.seconds = time;
}

var timespan = new Timespan(3662);
share|improve this answer

And here is a version for XDate.js

(new XDate())
    .clearTime()
    .addSeconds(15457)
    .toString('HH:mm:ss')
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.