1/*
2The == operator will compare for equality after doing any necessary type conversions.
3The === operator will not do the conversion, so if two values are not the same type === will simply return false.
4Both are equally quick.
5*/
6
70 == '' // true
80 === '' // false
9