Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 991535 of Intl.DateTimeFormat.prototype.resolvedOptions()

  • Revision slug: Web/JavaScript/Reference/Global_Objects/DateTimeFormat/resolvedOptions
  • Revision title: Intl.DateTimeFormat.prototype.resolvedOptions()
  • Revision id: 991535
  • Created:
  • Creator: paul.irish
  • Is current revision? No
  • Comment update to https://kangax.github.io/compat-table/esintl/ browser support story. timeZone is special.

Revision Content

{{JSRef}}

The Intl.DateTimeFormat.prototype.resolvedOptions() method returns a new object with properties reflecting the locale and date and time formatting options computed during initialization of this {{jsxref("DateTimeFormat", "DateTimeFormat")}} object.

Syntax

dateTimeFormat.resolvedOptions()

Description

Returns a new object with properties reflecting the locale and date and time formatting options computed during initialization of this {{jsxref("DateTimeFormat", "DateTimeFormat")}} object. The object has the following properties:

locale
The BCP 47 language tag for the locale actually used. If any Unicode extension values were requested in the input BCP 47 language tag that led to this locale, the key-value pairs that were requested and are supported for this locale are included in locale.
calendar
numberingSystem
The values requested using the Unicode extension keys "ca" and "nu" or filled in as default values.
timeZone
The value provided for this property in the options argument; {{jsxref("undefined")}} (representing the runtime's default time zone) if none was provided. Warning: Applications should not rely on {{jsxref("undefined")}} being returned, as future versions may return a {{jsxref("String")}} value identifying the runtime’s default time zone instead.
hour12
The value provided for this property in the options argument or filled in as a default.
weekday
era
year
month
day
hour
minute
second
timeZoneName
The values resulting from format matching between the corresponding properties in the options argument and the available combinations and representations for date-time formatting in the selected locale. Some of these properties may not be present, indicating that the corresponding components will not be represented in formatted output.

Examples

Using the resolvedOptions method

var germanFakeRegion = new Intl.DateTimeFormat("de-XX", { timeZone: "UTC" });
var usedOptions = germanFakeRegion.resolvedOptions();

usedOptions.locale;         // "de"
usedOptions.calendar;       // "gregory"
usedOption.numberingSystem; // "latn"
usedOptions.timeZone;       // "UTC"
usedOptions.month;          // "numeric"

Specifications

Specification Status Comment
{{SpecName('ES Int 1.0', '#sec-12.3.3', 'Intl.DateTimeFormat.prototype.resolvedOptions')}} {{Spec2('ES Int 1.0')}} Initial definition.
{{SpecName('ES Int 2.0', '#sec-Intl.DateTimeFormat.prototype.resolvedOptions', 'Intl.DateTimeFormat.prototype.resolvedOptions')}} {{Spec2('ES Int 2.0')}}  
{{SpecName('ES Int Draft', '#sec-Intl.DateTimeFormat.prototype.resolvedOptions', 'Intl.DateTimeFormat.prototype.resolvedOptions')}} {{Spec2('ES Int Draft')}}  

Browser compatibility

{{CompatibilityTable}}
Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support {{CompatChrome("24")}} {{CompatGeckoDesktop("29")}} {{CompatIE("11")}} {{CompatOpera("15")}} {{CompatNo}}
computed timeZone {{CompatChrome("35")}} {{CompatNo}} {{CompatNo}} {{CompatOpera("30")}} {{CompatNo}}
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support {{CompatNo}} {{CompatChrome("26")}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}}

See also

  • {{jsxref("DateTimeFormat", "Intl.DateTimeFormat")}}

Revision Source

<div>{{JSRef}}</div>

<p>The <strong><code>Intl.DateTimeFormat.prototype.resolvedOptions()</code></strong> method returns a new object with properties reflecting the locale and date and time formatting options computed during initialization of this {{jsxref("DateTimeFormat", "DateTimeFormat")}} object.</p>

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox">
<code><var>dateTimeFormat</var>.resolvedOptions()</code></pre>

<h2 id="Description">Description</h2>

<p>Returns a new object with properties reflecting the locale and date and time formatting options computed during initialization of this {{jsxref("DateTimeFormat", "DateTimeFormat")}} object. The object has the following properties:</p>

<dl>
 <dt><code>locale</code></dt>
 <dd>The BCP 47 language tag for the locale actually used. If any Unicode extension values were requested in the input BCP 47 language tag that led to this locale, the key-value pairs that were requested and are supported for this locale are included in <code>locale</code>.</dd>
 <dt><code>calendar</code></dt>
 <dt><code>numberingSystem</code></dt>
 <dd>The values requested using the Unicode extension keys <code>"ca"</code> and <code>"nu"</code> or filled in as default values.</dd>
 <dt><code>timeZone</code></dt>
 <dd>The value provided for this property in the <code>options</code> argument; {{jsxref("undefined")}} (representing the runtime's default time zone) if none was provided. Warning: Applications should not rely on {{jsxref("undefined")}} being returned, as future versions may return a {{jsxref("String")}} value identifying the runtime’s default time zone instead.</dd>
 <dt><code>hour12</code></dt>
 <dd>The value provided for this property in the <code>options</code> argument or filled in as a default.</dd>
 <dt><code>weekday</code></dt>
 <dt><code>era</code></dt>
 <dt><code>year</code></dt>
 <dt><code>month</code></dt>
 <dt><code>day</code></dt>
 <dt><code>hour</code></dt>
 <dt><code>minute</code></dt>
 <dt><code>second</code></dt>
 <dt><code>timeZoneName</code></dt>
 <dd>The values resulting from format matching between the corresponding properties in the <code>options</code> argument and the available combinations and representations for date-time formatting in the selected locale. Some of these properties may not be present, indicating that the corresponding components will not be represented in formatted output.</dd>
</dl>

<h2 id="Examples">Examples</h2>

<h3 id="Using_the_resolvedOptions_method">Using the <code>resolvedOptions</code> method</h3>

<pre class="brush: js">
var germanFakeRegion = new Intl.DateTimeFormat("de-XX", { timeZone: "UTC" });
var usedOptions = germanFakeRegion.resolvedOptions();

usedOptions.locale;         // "de"
usedOptions.calendar;       // "gregory"
usedOption.numberingSystem; // "latn"
usedOptions.timeZone;       // "UTC"
usedOptions.month;          // "numeric"
</pre>

<h2 id="Specifications">Specifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('ES Int 1.0', '#sec-12.3.3', 'Intl.DateTimeFormat.prototype.resolvedOptions')}}</td>
   <td>{{Spec2('ES Int 1.0')}}</td>
   <td>Initial definition.</td>
  </tr>
  <tr>
   <td>{{SpecName('ES Int 2.0', '#sec-Intl.DateTimeFormat.prototype.resolvedOptions', 'Intl.DateTimeFormat.prototype.resolvedOptions')}}</td>
   <td>{{Spec2('ES Int 2.0')}}</td>
   <td>&nbsp;</td>
  </tr>
  <tr>
   <td>{{SpecName('ES Int Draft', '#sec-Intl.DateTimeFormat.prototype.resolvedOptions', 'Intl.DateTimeFormat.prototype.resolvedOptions')}}</td>
   <td>{{Spec2('ES Int Draft')}}</td>
   <td>&nbsp;</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>

<div>{{CompatibilityTable}}</div>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Chrome</th>
   <th>Firefox (Gecko)</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari (WebKit)</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>{{CompatChrome("24")}}</td>
   <td>{{CompatGeckoDesktop("29")}}</td>
   <td>{{CompatIE("11")}}</td>
   <td>{{CompatOpera("15")}}</td>
   <td>{{CompatNo}}</td>
  </tr>
  <tr>
   <td>computed <code>timeZone</code></td>
   <td>{{CompatChrome("35")}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatOpera("30")}}</td>
   <td>{{CompatNo}}</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Android</th>
   <th>Chrome for Android</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>IE Phone</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatChrome("26")}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="See_also">See also</h2>

<ul>
 <li>{{jsxref("DateTimeFormat", "Intl.DateTimeFormat")}}</li>
</ul>
Revert to this revision