Javascript Date getSecondsTwoDigits()

Description

Javascript Date getSecondsTwoDigits()


Date.prototype.getSecondsTwoDigits = function()
{
    var retval = this.getSeconds();
    if (retval < 10)
    {//from  w w  w .j av  a  2  s. com
        return ("0" + retval.toString());
    }
    else
    {
        return retval.toString();
    }
};



PreviousNext

Related