NaN (Not a Number).
- Why does not NaNequal(==) or strict equal(===) toNaNitself?
- How we can evaluate the following conditions to true?
let x = NaN;
// equal(==)
if(x == NaN) {
    console.log(`${x} (Not a Number)`);
}
// strict equal(===)
if(x === NaN) {
    console.log(`${x} (Not a Number)`);
}
