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