Strict inequality (!==)
The strict inequality operator (!==) checks whether its two operands are not equal, returning a Boolean result. Unlike the inequality operator, the strict inequality operator always considers operands of different types to be different.
Syntax
x !== y
Copy to ClipboardDescription
The strict inequality operator checks whether its operands are not equal. It is the negation of the strict equality operator so the following two lines will always give the same result:
x !== y
!(x === y)
Copy to ClipboardFor details of the comparison algorithm, see the page for the strict equality operator.
Like the strict equality operator, the strict inequality operator will always consider operands of different types to be different:
3 !== "3"; // true
Copy to ClipboardExamples
Comparing operands of the same type
console.log("hello" !== "hello"); // false
console.log("hello" !== "hola"); // true
console.log(3 !== 3); // false
console.log(3 !== 4); // true
console.log(true !== true); // false
console.log(true !== false); // true
console.log(null !== null); // false
Copy to ClipboardComparing operands of different types
console.log("3" !== 3); // true
console.log(true !== 1); // true
console.log(null !== undefined); // true
Copy to ClipboardComparing objects
const object1 = {
name: "hello"
}
const object2 = {
name: "hello"
}
console.log(object1 !== object2); // true
console.log(object1 !== object1); // false
Copy to ClipboardSpecifications
Specification
ECMAScript Language Specification # sec-equality-operators |
'Coding Languages > JavaScript' 카테고리의 다른 글
[JavaScript] Promise (0) | 2022.05.19 |
---|---|
[JavaScript] Scheduling: setTimeout and setInterval (0) | 2022.04.30 |
[JavaScript] Map (0) | 2022.04.20 |
[JavaScript] double exclamation mark (!!) (0) | 2022.04.19 |
[JavaScript] RegExp (0) | 2022.04.16 |