Skip to content

== vs === equal operators in JavaScript, what's the difference?

New Course Coming Soon:

Get Really Good at Git

`==` and `===`, two different operators to check for object equality. Which one to choose?

In JavaScript you can use two different operators to check for object equality. They are == and ===.

They basically do the same thing, but there is a big difference between the two.

=== will check for equality of two values. If they are objects, the objects must be of the same type. JavaScript is not typed, as you know, but you have some fundamental types which you must know about.

In particular we have value types (Boolean, null, undefined, String and Number) and reference types (Array, Object, Function).

If two values are not of the same type, === will return false.

If they are of the same type, JavaScript will check for equality.

With reference types, this means the values need to reference the same object / array / function. Not one with the same values: the same one.

== is different because it will attempt to convert types to match.

This is why you get results like

false == '0'  //true
false === '0' //false
null == undefined //true
null === undefined  //false

In my experience, in 97% of the cases you’ll want to use ===, unless == provides exactly what you want. It has less drawbacks and edge cases.

The same goes for != and !==, which perform the same thing, but negated.

Always default to !==.

Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!
→ Get my JavaScript Beginner's Handbook
→ Read my JavaScript Tutorials on The Valley of Code
→ Read my TypeScript Tutorial on The Valley of Code

Here is how can I help you: