Skip to main content
Version: 3.27.2

Date.prototype.toTimeString()

The toTimeString() method returns the time portion of a Date object interpreted in the local timezone in English.

Syntax

toTimeString()

Return value

A string representing the time portion of the given date in human readable form in English.

Description

Date instances refer to a specific point in time. toTimeString() interprets the date in the local timezone and formats the time part in English. It always uses the format of hh:mm:ss GMT±xxxx (TZ), where:

Format StringDescription
hhHour, as two digits with leading zero if required
mmMinute, as two digits with leading zero if required
ssSeconds, as two digits with leading zero if required
±xxxxThe local timezone's offset — two digits for hours and two digits for minutes (e.g. -0500, +0800)
TZThe timezone's name (e.g. PDT, PST)

For example: "04:42:04 GMT+0000 (Coordinated Universal Time)".

  • If you want to get the date part, use toDateString().
  • If you want to get both the date and time, use toString().
  • If you want to make the date interpreted as UTC instead of local timezone, use toUTCString().
  • If you want to format the date in a more user-friendly format (e.g. localization), use toLocaleTimeString().