JavaScript | string.localeCompare()
The string.localeCompare() is an inbuilt function in JavaScript which is used to compare any two elements and 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 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 the compare string and zero (0) if the compare and reference strings are equivalent.
Code #1:
<script> // An alphabet "n" comes before "z" which // gives a negative value a = 'n'.localeCompare('z'); document.write(a + '<br>') // Alphabetically the word "gfg" comes after // "geeksforgeeks" which gives a positive value b = 'gfg'.localeCompare('geeksforgeeks'); document.write(b + '<br>') // "gfg" and "gfg" are equivalent which // gives a value of zero(0) c = 'a'.localeCompare('a'); document.write(c) </script> |
Output:
-1 1 0
Code #2:
This function also used to sort elements.
<script> // Taking some elements to sort alphabetically var elements = [ 'gfg', 'geeksforgeeks', 'cse', 'department' ]; a = elements.sort((a, b) => a.localeCompare(b)); // Returning sorted elements document.write(a) </script> |
Output:
cse, department, geeksforgeeks, gfg
Recommended Posts:
- Introduction to JavaScript Course | Learn how to Build a task tracker using JavaScript
- JavaScript Course | Understanding Code Structure in JavaScript
- JavaScript Course | Printing Hello World in JavaScript
- JavaScript Course | Logical Operators in JavaScript
- JavaScript Course | Conditional Operator in JavaScript
- JavaScript Course | Data Types in JavaScript
- JavaScript Course | Objects in JavaScript
- JavaScript Course | JavaScript Prompt Example
- JavaScript Course | Loops in JavaScript
- JavaScript Course | Variables in JavaScript
- JavaScript Course | Functions in JavaScript
- JavaScript Course | Operators in JavaScript
- JavaScript vs Python : Can Python Overtop JavaScript by 2020?
- How to include a JavaScript file in another JavaScript file ?
- JavaScript | Let
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



