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