Sorting Strings
Last updated
Was this helpful?
Last updated
Was this helpful?
Javascript has a native method that allows sorting arrays. Doing a simple array.sort()
will treat each array entry as a string and sort it alphabetically. Also you can provide your function.
But when you try order an array of non ASCII characters like this ['é', 'a', 'ú', 'c']
, you will obtain a strange result ['c', 'e', 'á', 'ú']
. That happens because sort works only with the English language.
See the next example:
Fortunately, there are two ways to overcome this behavior and provided by ECMAScript Internationalization API.
Both methods have their own custom parameters in order to configure it to work adequately.
localeCompare()
Intl.Collator()
For each method you can customize the location.
So when you are working with arrays of strings in a language other than English, remember to use this method to avoid unexpected sorting.
According to Intl.Collator is faster when comparing large numbers of strings.