javascript instance method
Temporal.Instant.prototype.round()
The round() method of Instant instances returns a new Temporal.Instant object representing this instant rounded to the given unit.
Syntax
round(smallestUnit)
round(options)
Parameters
smallestUnit- : A string representing the
smallestUnitoption. This is a convenience overload, soround(smallestUnit)is equivalent toround({ smallestUnit }), wheresmallestUnitis a string.
- : A string representing the
options- : An object containing some or all of the following properties (in the order they are retrieved and validated):
roundingIncrementOptional- : A number (truncated to an integer) representing the rounding increment in the given
smallestUnit. Defaults to1. The increment and thesmallestUnitmust evenly divide 24 hours; for example, 45 seconds is a divisor of 86400 seconds, and 100 minutes is a divisor of 3600 minutes. This is slightly less strict than theround()method of the other classes, which all require the increment to be a divisor of the maximum value of the unit.
- : A number (truncated to an integer) representing the rounding increment in the given
roundingModeOptional- : A string specifying how to round off the fractional part of
smallestUnit. SeeIntl.NumberFormat(). Defaults to"halfExpand".
- : A string specifying how to round off the fractional part of
smallestUnit- : A string representing the smallest unit to include in the output. The value must be one of the following:
"hour","minute","second","millisecond","microsecond","nanosecond", or their plural forms. For units larger than"nanosecond", fractional parts of thesmallestUnitwill be rounded according to theroundingIncrementandroundingModesettings.
- : A string representing the smallest unit to include in the output. The value must be one of the following:
- : An object containing some or all of the following properties (in the order they are retrieved and validated):
Return value
A new Instant object representing this instant rounded to the given unit, where all units smaller than smallestUnit are zeroed out.
Exceptions
RangeError- : Thrown if any of the options is invalid.
Examples
Rounding off small units
const instant = Temporal.Instant.fromEpochMilliseconds(1000);
const roundedInstant = instant.round("second");
console.log(roundedInstant.epochMilliseconds); // 1000
const instant2 = instant.round("minute");
console.log(instant2.epochMilliseconds); // 0
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.