JavaScript 2 é igual a 3 iguais

== > compares values
=== > compares type AND value

Note: {} === {} is False BUT obj === obj is True
QuietHumility