JSOperators

===

Comparison strict equal operator

See more on MDN

The strict comparison operator takes into considering the type of each value. It won't try to coerce one type to another.

2 === "2"; // false
2 === 2; // true