Appearance
Requires the use of the === and !== operators
Using non-strict equality operators leads to hard to track bugs due to type coercion.
let a = []; let b = false; a == b;