0
Is there a !=== comparison operator?
It isnât talked about in the comparison operator lessons and I canât find a question that involves this topic. Is this a valid comparison operator in JavaScript?
2 Answers
+ 2
Nope. That is invalid. The valid ones are != and !== which somehow corresponds to == and ===.
+ 1
Easy answer đ. Thanks