0
[JS] Why is NaN !== NaN true?
console.log(NaN!==NaN); // returns true, but why?
2 Answers
+ 1
Thank you very much Ben!
So as from what I read it is just a Definition, nothing logical. I'll keep that in mind.
NaN == NaN => false
console.log(NaN!==NaN); // returns true, but why?