`===`) instead of the equality (`==`) operator.`===` operator not only checks the values, but also the types of variables. It's safer then `==` which performs type conversions before comparing the values.0 == false; // true0 === false; // false0 == []; // true0 === []; // false0 == ''; // true0 === ''; // false