!==
This operator checks that a value does not equal another value in a strict manner. It will check the value and the type and determine if they are different or not.
console.log(1 !== "1"); // true