JavaScript 2 es igual a 3 iguales

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

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