Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Strings</h1>
<h2>The localeCompare() Method</h2>
<p>localeCompare() returns one of 3 numbers indicating the sort order.</p> 
<ul>
  <li>-1 if sorted before</li>
  <li>1 if sorted after</li>
  <li>0 if equal</li> 
</ul>
<p>Compare "A" with "a":</p>
<p id="demo"></p>
<script>
let text1 = "A";
let text2 = "a";
let result = text1.localeCompare(text2);
document.getElementById("demo").innerHTML = result;
</script>
</body>
</html>