Date.toTimeString()
Converts the time portion of a Date object to a string
Last updated
Converts the time portion of a Date object to a string
Last updated
The toTimeString() method returns the time portion of a Date object in human readable form in American English.
Return value
A string representing the time portion of the given date in human readable form in American English.
instances refer to a specific point in time. Calling will return the date formatted in a human readable form in American English. In , this consists of the date portion (day, month, and year) followed by the time portion (hours, minutes, seconds, and time zone). Sometimes it is desirable to obtain a string of the time portion; such a thing can be accomplished with the toTimeString()
method.
The toTimeString()
method is especially useful because compliant engines implementing may differ in the string obtained from for objects, as the format is implementation-dependent; simple string slicing approaches may not produce consistent results across multiple engines.
toTimeString()
Uros Durdevic