function isNaN(x) { return x !== x; }; isNaN(NaN);//true
let b=1 let n=readline() if(isNaN(b)){ console.log("You typed 0!") }else{ console.log("You did not type 0!") }