You need to compare values in almost every JavaScript program. This is where comparison operators come in. They check if values match or if one is greater than another.
Table of Content
Understand the JavaScript Comparison Operators
Comparison operators check how two values relate. You can check if two values are equal or not equal, or find out which one is bigger. These operators return either true or false.
Each decision in your code—like an if statement, a while loop, or any condition—relies on a comparison. Your code cannot decide what to do without them. They make your logic clear and your code dynamic.
Here are types:
- Equal (
==) - Strict Equal (
===) - Not Equal (
!=) - Strict Not Equal (
!==) - Greater Than (
>) - Less Than (
<) - Greater Than or Equal To (
>=) - Less Than or Equal To (
<=)
You will see each one below with examples.
Loose vs. Strict Comparison in JavaScript
JavaScript has two types of comparison: loose (==, !=) and strict (===, !==).
Loose comparison converts types before checking values. Strict comparison checks both value and type without conversion.
For example:
'5' == 5 // true
'5' === 5 // falseYou may not notice the mistake unless you know how each operator behaves.
Here is another example:
true == 1 // true
true === 1 // falseSo, why you should avoid loose equality in JavaScript?
Loose equality can hide bugs. You may compare numbers with strings or booleans. This can make your logic wrong. Stick to === unless you understand the difference.
Loose comparison can convert strings, numbers, booleans, even null or undefined. This can confuse your code.
false == 0 // true
'' == 0 // true
null == false // falseType coercion is automatic in loose checks. Use strict checks to avoid errors.
Here is a table that shows you the comparison:
| Operator | Meaning | Type Coercion? |
|---|---|---|
== | Equal | Yes |
=== | Equal | No |
!= | Not Equal | Yes |
!== | Not Equal | No |
Greater, Less, and Equal Checks
JavaScript gives you four size-based comparison operators: >, <, >=, and <=. These help you test if a value is bigger or smaller. Or even equal in size.
>returns true if the left value is more than the right.<returns true if the left value is less than the right.>=returns true if the left value is more than or equal to the right.<=returns true if the left value is less than or equal to the right.
Here is an example:
10 > 5 // true
'20' < 100 // true (converted to number)
'apple' < 'banana' // true (alphabetical)Comparisons work for numbers and strings. String checks follow dictionary order.
Here is another example:
7 >= 7 // true
4 <= 3 // false
'3' <= 3 // true (type conversion)These checks follow the same coercion rules as > and <.
Edge Cases and Gotchas in JavaScript Comparison Operators
Some comparison results follow specific type conversion rules that can cause unexpected outcomes. You will see examples that do not behave as most people expect.
Why [] == false returns true:
An empty array seems like a value you might treat as false, but the logic behind it is more complex.
Here is what happens:
- JavaScript tries to convert the array to a primitive.
[]becomes an empty string"".""becomes the number0.falsealso becomes0in loose comparison.
So this happens:
[] == false // trueNow compare them with strict equality:
[] === false // falseThis is false because the types are different: [] is an object, and false is a boolean. Strict comparison checks both value and type, so it fails.
Why null == undefined returns true but null === undefined is false:
JavaScript treats null and undefined as loosely equal. This is a special case. No type conversion happens—they just return true if you use ==.
null == undefinedBut in strict comparison, the types must match:
null === undefined // falseThey do not share the same type:
nullis an object.undefinedis its own type.
So strict equality returns false.
Why NaN is not equal to itself:
NaN stands for “Not a Number.” It has a special rule in JavaScript: it never equals anything, not even another NaN.
NaN == NaN // false
NaN === NaN // falseThis happens because JavaScript uses IEEE 754 rules for numbers. In that system, NaN always means “invalid number” and no invalid number should equal another.
To check if a value is NaN, use:
Number.isNaN(NaN) // trueThis works because Number.isNaN() checks the value without type conversion. Do not use == or === for this case.
Wrapping Up
In this article, you learned how JavaScript comparison operators work and why they matter. You saw the difference between loose and strict checks. You also saw how coercion can affect your logic. Here is a quick recap:
- Use
===and!==instead of==and!=. - Type coercion can change how values compare.
- Combine logical and comparison checks for better rules.
- Edge cases like
[] == falseornull == undefinedcan trick you.
FAQs
What is the difference between == and === in JavaScript?
Why is NaN not equal to NaN in JavaScript?
Can you compare strings with comparison operators?
Should I avoid using == and != in JavaScript?
Why does [] == false return true in JavaScript?
Similar Reads
JavaScript object methods are simple ways to handle data inside objects. An object can hold many values, and methods give…
JavaScript gives you the Math.trunc() function to work with decimal numbers. You use it when you want to remove the…
AJAX keeps your web app fast. You do not need to reload the page every time you send or get…
JavaScript includes Math.sign to find out if a number is positive. It also helps detect negative values or zero. It…
Object constructors and class constructors in JavaScript create objects in a structured way. Both provide methods to build reusable code.…
The toString function in JavaScript converts a value to a string form without change. It works on numbers, arrays, and…
Some numbers do not stay whole. You get decimal parts when you divide or calculate prices. You may need to…
You will face hoisting early when you write JavaScript. It affects how your code runs, and it may confuse you…
JavaScript code follows some rules that help both new and old developers. A project without rules in code creates trouble…
JavaScript runs code in different ways, but the for loop stays one of the most common tools. You use it…