JavaScript 2 égaux vs 3 égaux

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

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