javascript instance method
Intl.DurationFormat.prototype.resolvedOptions()
The resolvedOptions() method of DurationFormat instances returns a new object with properties reflecting the options computed during initialization of this DurationFormat object.
Syntax
resolvedOptions()
Parameters
None.
Return value
A new object with properties reflecting the options computed during the initialization of this DurationFormat object. The object has the following properties, in the order they are listed:
locale- : The BCP 47 language tag for the locale actually used, determined by the locale negotiation process. Only the
nuUnicode extension key, if requested, may be included in the output.
- : The BCP 47 language tag for the locale actually used, determined by the locale negotiation process. Only the
numberingSystem- : The value provided for this property in the
optionsargument, or using the Unicode extension key"nu", with default filled in as needed. It is a supported numbering system for this locale. The default is locale dependent.
- : The value provided for this property in the
style- : The value provided for this property in the
optionsargument, with default filled in as needed. It is either"long","short","narrow", or"digital". The default is"short".
- : The value provided for this property in the
years,yearsDisplay,months,monthsDisplay,weeks,weeksDisplay,days,daysDisplay,hours,hoursDisplay,minutes,minutesDisplay,seconds,secondsDisplay,milliseconds,millisecondsDisplay,nanoseconds,nanosecondsDisplay- : The values provided for these properties in the
optionsargument, with defaults filled in as needed. For the valid values and defaults for each, see theoptionsargument of the constructor.
- : The values provided for these properties in the
fractionalDigitsOptional- : The value provided for this property in the
optionsargument. It is only present if specified inoptions. It is an integer from 0 to 9, inclusive.
- : The value provided for this property in the
Examples
Using the resolvedOptions method
const duration = new Intl.DurationFormat("en");
const usedOptions = duration.resolvedOptions();
usedOptions.locale; // "en"
usedOptions.numberingSystem; // "latn"
usedOptions.years; // "long"
usedOptions.yearsDisplay; // "auto"
usedOptions.style; // "long"
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.