Basic Javascript (59/111) | Comparison with the Strict Equality Operator | freeCodeCamp
Full playlist 👉 [ Ссылка ]
The strict inequality operator (!==) is the logical opposite of the strict equality operator. It means ""Strictly Not Equal"" and returns false where strict equality would return true and vice versa. Strict inequality will not convert data types.
Examples
3 !== 3 // false
3 !== '3' // true
4 !== 3 // true"
[ Ссылка ]
Ещё видео!