The localeCompare()
method returns a number indicating whether a reference string comes before or after or is the same as the given string in sort order.
The new locales
and options
arguments let applications specify the language whose sort order should be used and customize the behavior of the function. In older implementations, which ignore the locales
and options
arguments, the locale and sort order used are entirely implementation dependent.
referenceStr.localeCompare(compareString[, locales[, options]])
Check the Browser compatibility section to see which browsers support the locales
and options
arguments, and the Checking for support for locales
and options
arguments for feature detection.
compareString
locales
Optional. A string with a BCP 47 language tag, or an array of such strings. For the general form and interpretation of the locales
argument, see the Intl page. The following Unicode extension keys are allowed:
co
"big5han"
, "dict"
, "direct"
, "ducet"
, "gb2312"
, "phonebk"
, "phonetic"
, "pinyin"
, "reformed"
, "searchjl"
, "stroke"
, "trad"
, "unihan"
. The "standard"
and "search"
values are ignored; they are replaced by the options
property usage
(see below).kn
"true"
and "false"
. This option can be set through an options
property or through a Unicode extension key; if both are provided, the options
property takes precedence.kf
"upper"
, "lower"
, or "false"
(use the locale's default). This option can be set through an options
property or through a Unicode extension key; if both are provided, the options
property takes precedence.options
Optional. An object with some or all of the following properties:
localeMatcher
"lookup"
and "best fit"
; the default is "best fit"
. For information about this option, see the Intl page.usage
"sort"
and "search"
; the default is "sort"
.sensitivity
Which differences in the strings should lead to non-zero result values. Possible values are:
"base"
: Only strings that differ in base letters compare as unequal. Examples: a ≠ b
, a = á
, a = A
."accent"
: Only strings that differ in base letters or accents and other diacritic marks compare as unequal. Examples: a ≠ b
, a ≠ á
, a = A
."case"
: Only strings that differ in base letters or case compare as unequal. Examples: a ≠ b
, a = á
, a ≠ A
."variant"
: Strings that differ in base letters, accents and other diacritic marks, or case compare as unequal. Other differences may also be taken into consideration. Examples: a ≠ b
, a ≠ á
, a ≠ A
.The default is "variant"
for usage "sort"
; it's locale dependent for usage "search"
.
ignorePunctuation
true
and false
; the default is false
.numeric
true
and false
; the default is false
. This option can be set through an options
property or through a Unicode extension key; if both are provided, the options
property takes precedence. Implementations are not required to support this property.caseFirst
"upper"
, "lower"
, or "false"
(use the locale's default); the default is "false"
. This option can be set through an options
property or through a Unicode extension key; if both are provided, the options
property takes precedence. Implementations are not required to support this property.A negative number if the reference string occurs before the compare string; positive if the reference string occurs after the compare string; 0 if they are equivalent.
Returns an integer indicating whether the referenceStr comes before, after or is equivalent to the compareStr.
DO NOT rely on exact return values of -1 or 1. Negative and positive integer results vary between browsers (as well as between browser versions) because the W3C specification only mandates negative and positive values. Some browsers may return -2 or 2 or even some other negative or positive value.
localeCompare()
// The letter "a" is before "c" yielding a negative value 'a'.localeCompare('c'); // -2 or -1 (or some other negative value) // Alphabetically the word "check" comes after "against" yielding a positive value 'check'.localeCompare('against'); // 2 or 1 (or some other positive value) // "a" and "a" are equivalent yielding a neutral value of zero 'a'.localeCompare('a'); // 0
localeCompare
enables a case-insensitive sort of an array.
var items = ['réservé', 'premier', 'cliché', 'communiqué', 'café', 'adieu']; items.sort((a, b) => a.localeCompare(b)); // ['adieu', 'café', 'cliché', 'communiqué', 'premier', 'réservé']
The locales
and options
arguments are not supported in all browsers yet. To check whether an implementation supports them, use the "i" argument (a requirement that illegal language tags are rejected) and look for a RangeError
exception:
function localeCompareSupportsLocales() { try { 'foo'.localeCompare('bar', 'i'); } catch (e) { return e.name === 'RangeError'; } return false; }
locales
The results provided by localeCompare()
vary between languages. In order to get the sort order of the language used in the user interface of your application, make sure to specify that language (and possibly some fallback languages) using the locales
argument:
console.log('ä'.localeCompare('z', 'de')); // a negative value: in German, ä sorts before z console.log('ä'.localeCompare('z', 'sv')); // a positive value: in Swedish, ä sorts after z
options
The results provided by localeCompare()
can be customized using the options
argument:
// in German, ä has a as the base letter console.log('ä'.localeCompare('a', 'de', { sensitivity: 'base' })); // 0 // in Swedish, ä and a are separate base letters console.log('ä'.localeCompare('a', 'sv', { sensitivity: 'base' })); // a positive value
When comparing large numbers of strings, such as in sorting large arrays, it is better to create an Intl.Collator
object and use the function provided by its compare
property.
Specification | Status | Comment |
---|---|---|
ECMAScript 3rd Edition (ECMA-262) | Standard | Initial definition. Implemented in JavaScript 1.2. |
ECMAScript 5.1 (ECMA-262) The definition of 'String.prototype.localeCompare' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'String.prototype.localeCompare' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262) The definition of 'String.prototype.localeCompare' in that specification. | Living Standard | |
ECMAScript Internationalization API 1.0 (ECMA-402) The definition of 'String.prototype.localeCompare' in that specification. | Standard |
locale and option parameter definitions. |
ECMAScript Internationalization API 2.0 (ECMA-402) The definition of 'String.prototype.localeCompare' in that specification. | Standard | |
ECMAScript Internationalization API 4.0 (ECMA-402) The definition of 'String.prototype.localeCompare' in that specification. | Draft |
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | Yes | Yes | Yes | Yes | Yes | Yes |
locales |
24 | Yes | 29 | 11 | 15 | 10 |
options |
24 | Yes | 29 | 11 | 15 | 10 |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic support | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
locales |
No | 26 | ? | No | No | No | 10 |
options |
No | 26 | ? | No | No | No | 10 |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/localeCompare