NaN === false
NaN === NaN
!!NaN === !!NaN
I\'v
This comparison also returns false:
false
const x = NaN const y = x console.log(x === y) // false