JavaScript » Comparison » !==

This is the strict not equal operator and only returns a value of true if both the operands are not equal and/or not of the same type.

Examples

Code:
a !== b
a !== "2"
4 !== '4'
Explanation:

These examples return a Boolean true.