Basic Javascript (59/111) | Comparison with the Strict Equality Operator | freeCodeCamp

Опубликовано: 24 Октябрь 2024
на канале: Stral Tech
257
3

Basic Javascript (59/111) | Comparison with the Strict Equality Operator | freeCodeCamp

Full playlist 👉    • Basic JavaScript (1/111) | Comment Yo...  

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"

https://www.freecodecamp.org/learn/ja...