DEV Community

Cover image for JavaScript == VS === The truth
Sagiv ben giat
Sagiv ben giat

Posted on • Updated on • Originally published at debuggr.io

JavaScript == VS === The truth

The truth behind the double and triple equal in JavaScript

Originally posted in debuggr.io

Some of the most frequently-asked interview questions of Front-End are about Equality comparisons and sameness in JavaScript (ECMAScript).

And the queen of these questions is:

What is the difference between the “double equals” and the “triple equals”?

Well, we all know the answer for that. The triple equal checks for types while the double equal isn’t.

That could be a short and nice answer for this question but unfortunately it is FALSE.

As per the specs, 7.2.14 Abstract Equality Comparison you can clearly see at the first check:

If Type(x) is the same as Type(y), then
Return the result of performing Strict Equality Comparison x === y.

Well there we have it, the “double equal” should check the type in both sides of the operator and if they are the same, it will delegate the rest of the work to the “triple equal” (Strict Equality Comparison).

Ok then, is the “triple equal” checking for types then?

YUP! we can see it on the first line:

If Type(x) is different from Type(y), return false.

Ouch, so what is the difference then?

The right answer to this question is that the “double equal” allows type coercion while the “triple equal” won’t allow it.

The “Double equal” a.k.a “Abstract Equality” or “Loose equality” will use every trick in the ECMAScript specifications book to coerce a type conversion in order to perform an equality comparison:

The “Triple equal” a.k.a “Strict equality” will immediately return false if the two sides are not of the same type:

*Bonus tip.

What will happen if we will run this block of code:

var x = 2;

if(x == true){
  console.log('x is truthy!');
}

Nothing is printed to the console.

But we know that 2 is not a “falsy” value, so it should be loosely equal to true, Should it?

OK, maybe we are way off and 2 is a “Falsy” value:

var x = 2;

if(x == false){
  console.log('x is falsy!');
}

Nothing again? 😲

How is it possible that a value with a type of Number is not truty or falsy?

Lets revisit the spec and notice these 2 interesting rules in the “Abstract Equality” section:

If Type(x) is Boolean, return the result of the comparison ! ToNumber(x) == y.
If Type(y) is Boolean, return the result of the comparison x == ! ToNumber(y).

You see, the specs says that if one of the sides is of type Boolean, the engine should perform the Abstract ToNumber on it, but it doesn’t say that the engine should do anything to the other side’s type.

So basically this is how it coerce:

  • false becomes 0

  • true becomes 1

  • x is still 2

Hence none of our conditions is fulfilled => 2 != 0 && 2 != 1.

But what if we just want to check that (x) holds a “Truthy” value? we could just pass it to an if:

var x = 2;

if(x){
  console.log('x is truthy!');
}
// x is truthy!

Success!

Take Away

Never ever perform a “loosely” comparison (double equal) when one side is an explicit Boolean type.

Recap

  • Both the “double equal” and “triple equal” perform a type check, while the former allows a type coercion and the latter doesn’t.

  • Never use a “double equal” when you want to explicit compare against a Boolean.

Hope you found this article helpful, if you have something to add or any suggestions or feedbacks I would love to hear about them, you can tweet or DM me @sag1v . 🤓

For more articles you can visit debuggr.io

Top comments (8)

Collapse
 
jhynzar profile image
Mj Tapiru

Just to add, if you really have to check for a Truthy value, and still want to compare it to true

you can do it like this:

if (Boolean(x) === true) {
//true
}

P.S. in this case you can use Loose Comparison(==) or Strict Comparison(===). ^

Collapse
 
karataev profile image
Eugene Karataev

Thanks for the great post. Indeed type coercion is not obvious in JavaScript and specification at first looks scary. That's why I like this tool which loosely compares two expressions according to the specification step by step.

Collapse
 
sag1v profile image
Sagiv ben giat

Thanks for sharing

Collapse
 
ziizium profile image
Habdul Hazeez

I like the way you explain stuff like this most especially the way you consult and translate the specification. Thank you.

Collapse
 
sag1v profile image
Sagiv ben giat

Thank you, I'm glad you liked it 🤓

Collapse
 
garetmckinley profile image
Garet McKinley

Adding to my list of great interview-question resources. Really good and simple explanation :)

Collapse
 
sag1v profile image
Sagiv ben giat

Thank you! 🙂

Collapse
 
jreckers profile image
jreckers

Best explanation l’ve understood, Thank You!