Temporal.PlainTime
{{SeeCompatTable}}
The Temporal.PlainTime object represents a time without a date or time zone; for example, a recurring event that happens at the same time every day. It is fundamentally represented as a combination of hour, minute, second, millisecond, microsecond, and nanosecond values.
Description
A PlainTime is essentially the time part of a {{jsxref("Temporal.PlainDateTime")}} object, with the date information removed. Because the date and time information don’t have much interaction, all general information about time properties is documented here.
RFC 9557 format
PlainTime objects can be serialized and parsed using the RFC 9557 format, an extension to the ISO 8601 / RFC 3339 format. The string has the following form:
HH:mm:ss.sssssssss
HH- : A two-digit number from
00to23. It may be prefixed by the time designatorTort.
- : A two-digit number from
mm{{optional_inline}}- : A two-digit number from
00to59. Defaults to00.
- : A two-digit number from
ss.sssssssss{{optional_inline}}- : A two-digit number from
00to59. May optionally be followed by a.or,and one to nine digits. Defaults to00. TheHH,mm, andsscomponents can be separated by:or nothing. You can omit either justssor bothssandmm, so the time can be one of three forms:HH,HH:mm, orHH:mm:ss.sssssssss.
- : A two-digit number from
As an input, you may optionally include the date, offset, time zone identifier, and calendar, in the same format as PlainDateTime, but they will be ignored. A date-only string will be rejected. Other annotations in the [key=value] format are also ignored, and they must not have the critical flag.
When serializing, you can configure the fractional second digits.
Constructor
{{jsxref("Temporal/PlainTime/PlainTime", "Temporal.PlainTime()")}}{{experimental_inline}}- : Creates a new
Temporal.PlainTimeobject by directly supplying the underlying data.
- : Creates a new
Static methods
{{jsxref("Temporal/PlainTime/compare", "Temporal.PlainTime.compare()")}}{{experimental_inline}}- : Returns a number (-1, 0, or 1) indicating whether the first time comes before, is the same as, or comes after the second time. Equivalent to comparing the hour, minute, second, millisecond, microsecond, and nanosecond fields one by one.
{{jsxref("Temporal/PlainTime/from", "Temporal.PlainTime.from()")}}{{experimental_inline}}- : Creates a new
Temporal.PlainTimeobject from anotherTemporal.PlainTimeobject, an object with time properties, or an RFC 9557 string.
- : Creates a new
Instance properties
These properties are defined on Temporal.PlainTime.prototype and shared by all Temporal.PlainTime instances.
{{jsxref("Object/constructor", "Temporal.PlainTime.prototype.constructor")}}- : The constructor function that created the instance object. For
Temporal.PlainTimeinstances, the initial value is the{{jsxref("Temporal/PlainTime/PlainTime", "Temporal.PlainTime()")}}constructor.
- : The constructor function that created the instance object. For
{{jsxref("Temporal/PlainTime/hour", "Temporal.PlainTime.prototype.hour")}}{{experimental_inline}}- : Returns an integer from 0 to 23 representing the hour component of this time.
{{jsxref("Temporal/PlainTime/microsecond", "Temporal.PlainTime.prototype.microsecond")}}{{experimental_inline}}- : Returns an integer from 0 to 999 representing the microsecond (10-6 second) component of this time.
{{jsxref("Temporal/PlainTime/millisecond", "Temporal.PlainTime.prototype.millisecond")}}{{experimental_inline}}- : Returns an integer from 0 to 999 representing the millisecond (10-3 second) component of this time.
{{jsxref("Temporal/PlainTime/minute", "Temporal.PlainTime.prototype.minute")}}{{experimental_inline}}- : Returns an integer from 0 to 59 representing the minute component of this time.
{{jsxref("Temporal/PlainTime/nanosecond", "Temporal.PlainTime.prototype.nanosecond")}}{{experimental_inline}}- : Returns an integer from 0 to 999 representing the nanosecond (10-9 second) component of this time.
{{jsxref("Temporal/PlainTime/second", "Temporal.PlainTime.prototype.second")}}{{experimental_inline}}- : Returns an integer from 0 to 59 representing the second component of this time.
Temporal.PlainTime.prototype[Symbol.toStringTag]- : The initial value of the
[Symbol.toStringTag]property is the string"Temporal.PlainTime". This property is used in{{jsxref("Object.prototype.toString()")}}.
- : The initial value of the
Instance methods
{{jsxref("Temporal/PlainTime/add", "Temporal.PlainTime.prototype.add()")}}{{experimental_inline}}- : Returns a new
Temporal.PlainTimeobject representing this time moved forward by a given duration (in a form convertible by{{jsxref("Temporal/Duration/from", "Temporal.Duration.from()")}}), wrapping around the clock if necessary.
- : Returns a new
{{jsxref("Temporal/PlainTime/equals", "Temporal.PlainTime.prototype.equals()")}}{{experimental_inline}}- : Returns
trueif this time is equivalent in value to another time (in a form convertible by{{jsxref("Temporal/PlainTime/from", "Temporal.PlainTime.from()")}}), andfalseotherwise. They are compared by their time values. Equivalent toTemporal.PlainTime.compare(this, other) === 0.
- : Returns
{{jsxref("Temporal/PlainTime/round", "Temporal.PlainTime.prototype.round()")}}{{experimental_inline}}- : Returns a new
Temporal.PlainTimeobject representing this time rounded to the given unit.
- : Returns a new
{{jsxref("Temporal/PlainTime/since", "Temporal.PlainTime.prototype.since()")}}{{experimental_inline}}- : Returns a new
{{jsxref("Temporal.Duration")}}object representing the duration from another time (in a form convertible by{{jsxref("Temporal/PlainTime/from", "Temporal.PlainTime.from()")}}) to this time. The duration is positive if the other time is before this time, and negative if after.
- : Returns a new
{{jsxref("Temporal/PlainTime/subtract", "Temporal.PlainTime.prototype.subtract()")}}{{experimental_inline}}- : Returns a new
Temporal.PlainTimeobject representing this time moved backward by a given duration (in a form convertible by{{jsxref("Temporal/Duration/from", "Temporal.Duration.from()")}}), wrapping around the clock if necessary.
- : Returns a new
{{jsxref("Temporal/PlainTime/toJSON", "Temporal.PlainTime.prototype.toJSON()")}}{{experimental_inline}}- : Returns a string representing this time in the same RFC 9557 format as calling
{{jsxref("Temporal/PlainTime/toString", "toString()")}}. Intended to be implicitly called by{{jsxref("JSON.stringify()")}}.
- : Returns a string representing this time in the same RFC 9557 format as calling
{{jsxref("Temporal/PlainTime/toLocaleString", "Temporal.PlainTime.prototype.toLocaleString()")}}{{experimental_inline}}- : Returns a string with a language-sensitive representation of this time.
{{jsxref("Temporal/PlainTime/toString", "Temporal.PlainTime.prototype.toString()")}}{{experimental_inline}}- : Returns a string representing this time in the RFC 9557 format.
{{jsxref("Temporal/PlainTime/until", "Temporal.PlainTime.prototype.until()")}}{{experimental_inline}}- : Returns a new
{{jsxref("Temporal.Duration")}}object representing the duration from this time to another time (in a form convertible by{{jsxref("Temporal/PlainTime/from", "Temporal.PlainTime.from()")}}). The duration is positive if the other time is after this time, and negative if before.
- : Returns a new
{{jsxref("Temporal/PlainTime/valueOf", "Temporal.PlainTime.prototype.valueOf()")}}{{experimental_inline}}- : Throws a
{{jsxref("TypeError")}}, which preventsTemporal.PlainTimeinstances from being implicitly converted to primitives when used in arithmetic or comparison operations.
- : Throws a
{{jsxref("Temporal/PlainTime/with", "Temporal.PlainTime.prototype.with()")}}{{experimental_inline}}- : Returns a new
Temporal.PlainTimeobject representing this time with some fields replaced by new values.
- : Returns a new
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}
See also
{{jsxref("Temporal")}}{{jsxref("Temporal.Duration")}}{{jsxref("Temporal.PlainDateTime")}}