Convert a string of a number of seconds into the format mm:ss - Node.js String

Node.js examples for String:Format

Description

Convert a string of a number of seconds into the format mm:ss

Demo Code


utils.parseTime = function(secs) {
    var secs = parseInt(secs);
    // ww w .  jav a  2 s . c o m
    var mm = Math.floor(secs/60).toString();
    var ss = (secs % 60).toString();

    if (mm.length === 1) {
        mm = '0' + mm;
    }
    if (ss.length === 1) {
        ss = '0' + ss;
    }

    return mm + ':' + ss;
}

Related Tutorials