The identity (===) operator behaves identically to the equality (==) operator except no type conversion is done, and the types must be the same to be considered equal.
0 == '0' //true. '0' was type converted to integer
0 === '0' //false. As expected