SyntaxFix
Write A Post
Hire A Developer
Questions
reference here
!== 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. The following examples return a Boolean true:
a !== b a !== "2" 4 !== '4'