Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 2.44 KB

File metadata and controls

57 lines (39 loc) · 2.44 KB
title slug page-type status browser-compat
Intl.DurationFormat.supportedLocalesOf()
Web/JavaScript/Reference/Global_Objects/Intl/DurationFormat/supportedLocalesOf
javascript-static-method
experimental
javascript.builtins.Intl.DurationFormat.supportedLocalesOf

{{JSRef}}{{SeeCompatTable}}

The Intl.DurationFormat.supportedLocalesOf() static method returns an array containing those of the provided locales that are supported in duration formatting without having to fall back to the runtime's default locale.

Syntax

Intl.DurationFormat.supportedLocalesOf(locales)
Intl.DurationFormat.supportedLocalesOf(locales, options)

Parameters

  • locales
  • options {{optional_inline}}
    • : An object that may have the following property:
      • localeMatcher
        • : The locale matching algorithm to use. Possible values are "lookup" and "best fit"; the default is "best fit". For information about this option, see the {{jsxref("Intl", "Intl", "#locale_identification_and_negotiation", 1)}} page.

Return value

An array of strings representing a subset of the given locale tags that are supported in duration formatting without having to fall back to the runtime's default locale.

Examples

Using supportedLocalesOf()

Assuming a runtime that supports Indonesian and German but not Balinese in duration formatting, supportedLocalesOf returns the Indonesian and German language tags unchanged, even though pinyin collation is neither relevant to duration formatting nor used with Indonesian, and a specialized German for Indonesia is unlikely to be supported. Note the specification of the "lookup" algorithm here — a "best fit" matcher might decide that Indonesian is an adequate match for Balinese since most Balinese speakers also understand Indonesian, and therefore return the Balinese language tag as well.

const locales = ["ban", "id-u-co-pinyin", "de-ID"];
const options = { localeMatcher: "lookup" };
console.log(Intl.DurationFormat.supportedLocalesOf(locales, options));
// ["id-u-co-pinyin", "de-ID"]

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{jsxref("Intl.DurationFormat")}}