Junior JavaScript

What is the difference between == and ===?

Operator Description Example

== Compares values after type

conversion

'5' == 5 →

true

=== Compares values and types '5' === 5 →

false

Follow me on LinkedIn:

More from JavaScript Tutorial

All questions for this course