We know many comparison operators from maths.
In JavaScript they are written like this:
- Greater/less than:
a > b,a < b. - Greater/less than or equals:
a >= b,a <= b. - Equals:
a == b, please note the double equality sign==means the equality test, while a single onea = bmeans an assignment. - Not equals: In maths the notation is
â, but in JavaScript itâs written asa != b.
In this article weâll learn more about different types of comparisons, how JavaScript makes them, including important peculiarities.
At the end youâll find a good recipe to avoid âJavaScript quirksâ-related issues.
Boolean is the result
All comparison operators return a boolean value:
trueâ means âyesâ, âcorrectâ or âthe truthâ.falseâ means ânoâ, âwrongâ or ânot the truthâ.
For example:
alert( 2 > 1 ); // true (correct)
alert( 2 == 1 ); // false (wrong)
alert( 2 != 1 ); // true (correct)
A comparison result can be assigned to a variable, just like any value:
let result = 5 > 4; // assign the result of the comparison
alert( result ); // true
String comparison
To see whether a string is greater than another, JavaScript uses the so-called âdictionaryâ or âlexicographicalâ order.
In other words, strings are compared letter-by-letter.
For example:
alert( 'Z' > 'A' ); // true
alert( 'Glow' > 'Glee' ); // true
alert( 'Bee' > 'Be' ); // true
The algorithm to compare two strings is simple:
- Compare the first character of both strings.
- If the first character from the first string is greater (or less) than the other stringâs, then the first string is greater (or less) than the second. Weâre done.
- Otherwise, if both stringsâ first characters are the same, compare the second characters the same way.
- Repeat until the end of either string.
- If both strings end at the same length, then they are equal. Otherwise, the longer string is greater.
In the first example above, the comparison 'Z' > 'A' gets to a result at the first step.
The second comparison 'Glow' and 'Glee' needs more steps as strings are compared character-by-character:
Gis the same asG.lis the same asl.ois greater thane. Stop here. The first string is greater.
The comparison algorithm given above is roughly equivalent to the one used in dictionaries or phone books, but itâs not exactly the same.
For instance, case matters. A capital letter "A" is not equal to the lowercase "a". Which one is greater? The lowercase "a". Why? Because the lowercase character has a greater index in the internal encoding table JavaScript uses (Unicode). Weâll get back to specific details and consequences of this in the chapter Strings.
Comparison of different types
When comparing values of different types, JavaScript converts the values to numbers.
For example:
alert( '2' > 1 ); // true, string '2' becomes a number 2
alert( '01' == 1 ); // true, string '01' becomes a number 1
For boolean values, true becomes 1 and false becomes 0.
For example:
alert( true == 1 ); // true
alert( false == 0 ); // true
It is possible that at the same time:
- Two values are equal.
- One of them is
trueas a boolean and the other one isfalseas a boolean.
For example:
let a = 0;
alert( Boolean(a) ); // false
let b = "0";
alert( Boolean(b) ); // true
alert(a == b); // true!
From JavaScriptâs standpoint, this result is quite normal. An equality check converts values using the numeric conversion (hence "0" becomes 0), while the explicit Boolean conversion uses another set of rules.
Strict equality
A regular equality check == has a problem. It cannot differentiate 0 from false:
alert( 0 == false ); // true
The same thing happens with an empty string:
alert( '' == false ); // true
This happens because operands of different types are converted to numbers by the equality operator ==. An empty string, just like false, becomes a zero.
What to do if weâd like to differentiate 0 from false?
A strict equality operator === checks the equality without type conversion.
In other words, if a and b are of different types, then a === b immediately returns false without an attempt to convert them.
Letâs try it:
alert( 0 === false ); // false, because the types are different
There is also a âstrict non-equalityâ operator !== analogous to !=.
The strict equality operator is a bit longer to write, but makes it obvious whatâs going on and leaves less room for errors.
Comparison with null and undefined
Thereâs a non-intuitive behavior when null or undefined are compared to other values.
- For a strict equality check
=== -
These values are different, because each of them is a different type.
alert( null === undefined ); // false - For a non-strict check
== -
Thereâs a special rule. These two are a âsweet coupleâ: they equal each other (in the sense of
==), but not any other value.alert( null == undefined ); // true - For maths and other comparisons
< > <= >= -
null/undefinedare converted to numbers:nullbecomes0, whileundefinedbecomesNaN.
Now letâs see some funny things that happen when we apply these rules. And, whatâs more important, how to not fall into a trap with them.
Strange result: null vs 0
Letâs compare null with a zero:
alert( null > 0 ); // (1) false
alert( null == 0 ); // (2) false
alert( null >= 0 ); // (3) true
Mathematically, thatâs strange. The last result states that ânull is greater than or equal to zeroâ, so in one of the comparisons above it must be true, but they are both false.
The reason is that an equality check == and comparisons > < >= <= work differently. Comparisons convert null to a number, treating it as 0. Thatâs why (3) null >= 0 is true and (1) null > 0 is false.
On the other hand, the equality check == for undefined and null is defined such that, without any conversions, they equal each other and donât equal anything else. Thatâs why (2) null == 0 is false.
An incomparable undefined
The value undefined shouldnât be compared to other values:
alert( undefined > 0 ); // false (1)
alert( undefined < 0 ); // false (2)
alert( undefined == 0 ); // false (3)
Why does it dislike zero so much? Always false!
We get these results because:
- Comparisons
(1)and(2)returnfalsebecauseundefinedgets converted toNaNandNaNis a special numeric value which returnsfalsefor all comparisons. - The equality check
(3)returnsfalsebecauseundefinedonly equalsnull,undefined, and no other value.
Avoid problems
Why did we go over these examples? Should we remember these peculiarities all the time? Well, not really. Actually, these tricky things will gradually become familiar over time, but thereâs a solid way to avoid problems with them:
- Treat any comparison with
undefined/nullexcept the strict equality===with exceptional care. - Donât use comparisons
>= > < <=with a variable which may benull/undefined, unless youâre really sure of what youâre doing. If a variable can have these values, check for them separately.
Summary
- Comparison operators return a boolean value.
- Strings are compared letter-by-letter in the âdictionaryâ order.
- When values of different types are compared, they get converted to numbers (with the exclusion of a strict equality check).
- The values
nullandundefinedare equal==to themselves and each other, but do not equal any other value. - Be careful when using comparisons like
>or<with variables that can occasionally benull/undefined. Checking fornull/undefinedseparately is a good idea.
Comments
<code>tag, for several lines â wrap them in<pre>tag, for more than 10 lines â use a sandbox (plnkr, jsbin, codepenâ¦)