function isNaN(x) { return x !== x; }; isNaN(NaN);//true
import math x = float('nan') math.isnan(x) True
let b=1 let n=readline() if(isNaN(b)){ console.log("You typed 0!") }else{ console.log("You did not type 0!") }
Number.isNaN(123)