NaN直译是Not a number
NaN是个特殊的number,它和任何值相比都不相等,甚至和它自己。
NaN === NaN 这个表达式是false
唯一能判断NaN的方法是
IsNaN(NaN) 这个表达式是true