JavaScript String localeCompare() Method
                                        
                                                                                    
                                                
                                                    Last Updated : 
                                                    11 Jul, 2025
                                                
                                                 
                                                 
                                             
                                                                             
                                                             
                            
                            
                                                                                    
                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.
            javascript
    let str1 = "apple";
let str2 = "banana";
let result = str1.localeCompare(str2);
console.log(result);
Example 2: This example shows the basic use of the string.localeCompare() Method in Javascript.
            javascript
    // An alphabet "n" comes before "z" which
// gives a negative value
let a = 'n'.localeCompare('z');
console.log(a)
// Alphabetically the word "gfg" comes after
// "geeksforgeeks" which gives a positive value
let b = 'gfg'.localeCompare('geeksforgeeks');
console.log(b)
// "gfg" and "gfg" are equivalent which
// gives a value of zero(0)
c = 'a'.localeCompare('a');
console.log(c)
Example 3: In this example we are using localeCompare() Method to sort the elements.
            javascript
    // Taking some elements to sort alphabetically
let elements = ['gfg', 'geeksforgeeks', 'cse', 'department'];
let a = elements.sort((a, b) => a.localeCompare(b));
// Returning sorted elements
console.log(a)
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.
            JavaScript
    let str1 = "geeks";
let str2 = "GEEKS";
let result = str1.localeCompare(str2, undefined, { sensitivity: "base" });
console.log(result); 
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 
 
                                
                                
                            
                                                                                
                                                            
                                                    
                                                
                                                        
                            
                        
                                                
                        
                                                                                    
                                                                Explore
                                    
                                        JavaScript Basics
Array & String
Function & Object
OOP
Asynchronous JavaScript
Exception Handling
DOM
Advanced Topics