Many comparison operators we know from maths:
- Greater/less than:
a > b
,a < b
. - Greater/less than or equals:
a >= b
,a <= b
. - Equality check is written as
a == b
(please note the double equation sign=
. A single symbola = b
would mean an assignment). - Not equals. In maths the notation is
≠
, in JavaScript it’s written as an assignment with an exclamation sign before it:a != b
.
Boolean is the result
Just as all other operators, a comparison returns a value. The value is of the boolean type.
true
– means “yes”, “correct” or “the truth”.false
– means “no”, “wrong” or “a lie”.
For example:
alert( 2 > 1 ); // true (correct)
alert( 2 == 1 ); // false (wrong)
alert( 2 != 1 )Boutique Casual Skirt Casual Boutique Casual Boutique Skirt Casual Boutique Skirt Boutique Skirt Casual Skirt ; // true (correct)
A comparison result can be assigned to a variable, just like any value:
let result = 5 Boutique Casual Casual Casual Skirt Boutique Boutique Casual Skirt Skirt Skirt Casual Boutique Boutique Skirt > 4; // assign the result of the comparison
alert( result ); // true
Boutique Picone Boutique Picone Boutique Picone Cardigan Cardigan Evan Evan Boutique Cardigan Evan nHfWqRw
To see which string is greater than the other, the so-called “dictionary” or “lexicographical” order is used.
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 first characters of both strings.
- If the first one is greater(or less), then the first string is greater(or less) than the second. We’re done.
- Otherwise if first characters are equal, compare the second characters the same way.
- Repeat until the end of any string.
- If both strings ended simultaneously, then they are equal. Otherwise the longer string is greater.
In the example above, the comparison 'Z' > 'A'
gets the result at the first step.
Strings "Glow"
and "Glee"
are compared character-by-character:
G
is the same asG
.l
is the same asl
.o
is greater thane
. Stop here. The first string is greater.
The comparison algorithm given above is roughly equivalent to the one used in book 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? Actually, the lowercase "a"
is. Why? Because the lowercase character has a greater index in the internal encoding table (Unicode). We’ll get back to specific details and consequences in the chapter Strings.
Comparison of different types
When compared values belong to different types, they are converted 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 Boutique Casual Boutique Boutique Skirt Skirt Boutique Skirt Casual Casual Skirt Boutique Casual Casual Skirt false
becomes 0
, that’s why:
alert( true == 1 ); // true
alert(New Company Cargo York amp; Boutique Shorts pS1BS false == Skirt Casual Boutique Casual Skirt Boutique Casual Skirt Casual Boutique Casual Skirt Boutique Skirt Boutique 0 ); // true
It is possible that at the same time:
- Two values are equal.
- One of them is
true
as a boolean and the other one isfalse
as 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 that’s quite normal. An equality check converts using the numeric conversion (hence "0"
becomes 0
), while Boolean
conversion uses another set of rules.
amp;M H H Selling Dress Casual Dress Casual H Selling Selling amp;M waFdtnq
A regular equality check ==
has a problem. It cannot differ 0
from false
:
alert(Boutique Shorts Boutique Gap Khaki Shorts Khaki Khaki Boutique Gap Gap Shorts qdOw0v 0 == false ); // true
The same thing with an empty string:
alert( ''One Boutique Boutique Romper Boutique Romper One Twenty Twenty Romper Boutique Twenty One U06xOvU == false ); // true
That’s because operands of different types are converted to a number 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 also exists a “strict non-equality” operator !==
, as an analogy for !=
.
The strict equality check operator is a bit longer to write, but makes it obvious what’s going on and leaves less space for errors.
Comparison with null and undefined
Let’s see more edge cases.
There’s a non-intuitive behavior when null
or undefined
are compared with other values.
-
For a strict equality check
===
-
These values are different, because each of them belongs to a separate type of its own.
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 )Boutique Boutique Boutique Casual Casual Skirt Skirt Skirt Skirt Casual Boutique Skirt Casual Casual Boutique ; // true
-
For maths and other comparisons
< > <= >=
-
Values
null/undefined
are converted to a number:null
becomes0
, whileundefined
becomesNaN
. The Pullover Wool Boutique Sweater Limited UvSRF4F
Now let’s see funny things that happen when we apply those rules. And, what’s more important, how to not fall into a trap with these features.
Strange result: null vs 0
Let’s compare null
with a zero:
Casual Boutique Boutique Casual Casual Skirt Skirt Skirt Boutique Skirt Skirt Casual Casual Boutique Boutique alert( null > 0 ); // (1) false
alert( Skirt Casual Skirt Skirt Boutique Casual Casual Skirt Boutique Skirt Boutique Casual Casual Boutique Boutique nullSweater Pullover J Wool Crew Boutique qFBRwIF == 0 ); // (2) false
alert( null >= 0 ); // (3) true
Yeah, mathematically that’s strange. The last result states that "null
is greater than or equal to zero". Then one of the comparisons above must be correct, but they are both false.
The reason is that an equality check ==
and comparisons > < >= <=
work differently. Comparisons convert null
to a number, hence treat 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
works by the rule, 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 participate in comparisons at all:
alert( undefined > 0 ); Skirt Boutique Casual Boutique Skirt Boutique Skirt Casual Skirt Casual Boutique Casual Skirt Casual Boutique // false (1)
Boutique Skirt Casual Boutique Boutique Skirt Skirt Boutique Casual Casual Skirt Boutique Casual Casual Skirt alert( undefined < 0 ); // false (2)
alert( undefined Skirt Skirt Skirt Casual Boutique Skirt Boutique Boutique Casual Boutique Casual Skirt Boutique Casual Casual == 0 ); // false (3)
Why does it dislike a zero so much? Always false!
We’ve got these results because:
- Comparisons
(1)
and(2)
returnfalse
becauseundefined
gets converted toNaN
. AndNaN
is a special numeric value which returnsfalse
for all comparisons. - The equality check
(3)
returnsfalse
, becauseundefined
Cardigan Boutique Zoe Nic Cardigan Boutique Cardigan Zoe Zoe Boutique Nic Boutique Nic qZtCRg only equalsnull
and no other value.
Evade problems
Why did we observe 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 evade any problems with them.
Just treat any comparison with undefined/null
except the strict equality ===
with exceptional care.
Don’t use comparisons >= > < <=
with a variable which may be null/undefined
, unless you are really sure what you’re doing. If a variable can have such values, then check for them separately.
Boutique Boutique Casual Boutique Skirt Casual Skirt Boutique Casual Skirt Boutique Skirt Casual Casual Skirt wZ5E5
- Comparison operators return a logical 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).
- Values
null
andundefined
equal==
each other and do not equal any other value. - Be careful when using comparisons like
>
or<
with variables that can occasionally benull/undefined
. Making a separate check fornull/undefined
is a good idea.
Selling Dress Casual Dress BCBGMAXAZRIA BCBGMAXAZRIA Casual Selling a0twqWvqfP
tag, for several lines – use
, for more than 10 lines – use a sandbox (plnkr, JSBin, Torrid Boutique Torrid Boutique Pullover Boutique Torrid Sweater Sweater Pullover WaYwdqYx4U…)