[sgmb id=3] In Javascript everyone recommends to use strict equality instead of lenient. In this article we will see the difference between strict and lenient equality and discover why it should not be used. So lets begin. 2 == true // 2 === 1 false 2 == false // 2 === 0 false 1