NaN

not a number 全称,

任何数/0 js会出现NaN

alert(NaN==NaN); // false

isNaN(NaN); // true

alert(isNaN(10)); // false

alert(isNaN(''blue'')); // true