摘要:
1、NaN 没办法通过 x == NaN 判断变量x是否是NaN,var x = NaN;console.log(x == x);//falseconsole.log(x == NaN);//falseconsole.log(NaN == NaN);//false正确判断方法console.log(... 阅读全文
posted @ 2015-08-03 21:44 碧螺春能解渴 阅读(110) 评论(0) 推荐(0)
posted @ 2015-08-03 21:44 碧螺春能解渴 阅读(110) 评论(0) 推荐(0)