/

HTML / CSS / JavaScript Tutorial

JavaScript Operator: strictly not equal

[this page | pdf | back links]

In JavaScript, the !== operator is the ‘strictly not equal to’ operator:

 

x

Y

x != y

8

8

false

8

5

true

 

Note: if x and y are of the same type then this operator should return the same as the ‘not equal to’  operator, !=.

 


NAVIGATION LINKS
Contents | Prev | Next | JavaScript Operators


Desktop view | Switch to Mobile