How do I test for NaN? [duplicate]

ぐ巨炮叔叔 提交于 2019-11-28 09:35:09

NaN's are unusual: they are not equal to anything, even themselves. You need to use isNaN(inbperr) to tell whether a value is a NaN or not.

NaN is Not a Number. One of few JavaScript toxic types. It can reduce whole expression to NaN.

http://www.crockford.com/javascript/encyclopedia/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!