Open In App

JavaScript String localeCompare() Method

Last Updated : 12 Jul, 2024
Comments
Improve
Suggest changes
2 Likes
Like
Report

The string.localeCompare() is an inbuilt method in JavaScript that is used to compare any two elements and returns a positive number if the reference string is lexicographically greater than the compare string and a negative number if the reference string is lexicographically smaller than the compare string and zero (0) if the compare and reference strings are equivalent. 

Syntax:

referenceString.localeCompare(compareString);

Parameters:

Here the parameter compareString is a string with which the reference string is compared. 

Return Values:

It returns a positive number if the reference string is lexicographically greater than the compare string and negative number if the reference string is lexicographically smaller than the compare string and zero (0) if the compare and reference strings are equivalent.

Example 1: This example shows the basic use of the string.localeCompare() Method in Javascript, here we compare the strings based on the locale-specific sorting order and return -1 because “apple” comes before “banana” alphabetically.


Output
-1

Example 2: This example shows the basic use of the string.localeCompare() Method in Javascript.


Output
-1
1
0

Example 3: In this example we are using localeCompare() Method to sort the elements.


Output
[ 'cse', 'department', 'geeksforgeeks', 'gfg' ]

Example 4: In the example, we compare “geeks” and “GEEKS” case-insensitively using localeCompare(). The result is 0, indicating they are considered equal.


Output
0

Note: the localeCompare() method performs a case-insensitive comparison using the { sensitivity: “base” } option. In this case, “geeks” and “GEEKS” are considered equal because the comparison ignores the difference in letter case.

We have a complete list of Javascript string methods, to check those please go through this Javascript String Complete reference article.

Supported Browsers: 

  • Chrome
  • Edge
  • Firefox
  • Opera
  • Safari


Next Article

Similar Reads