其实什么是NaN?概念有点模糊。
NaN就是非数值
比如可以用isNaN( )来判断一个数是不是数值
var num = 1;
alert( isNaN(num) ); //false //num是数值(不是非数值) 所以返回false