// What is === operator in Javascript? The strict equality operator ( === ) checks whether its two operands are equal, returning a Boolean result. console.log(1 === 1); //true console.log(1 === "1"); //false