- '==' checkes for both type and value equality.
- '===' checks the equlity of value ONLY.
- About'===', the result is only TRUE if it compares exact same value.
0 == '' // true
0 == '0' // true
false == 'false' // false (boolean == string)The result is only TRUE if it compares exact same value.

