getColonTimeFromDate
Returns a string of the form HH:MM:SS
from a Date
object.
- Use
Date.prototype.toTimeString()
andString.prototype.slice()
to get theHH:MM:SS
part of a givenDate
object.
Returns a string of the form HH:MM:SS
from a Date
object.
Date.prototype.toTimeString()
and String.prototype.slice()
to get the HH:MM:SS
part of a given Date
object.