🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## isNaN + [link](./isNaN "Link to this entry.") + [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L10059 "View in source.") + [npm](https://www.npmjs.com/package/lodash.isnan "See the npm package.") ``` _.isNaN(value) ``` 检查 `value` 是否是 `NaN`. **注意:** 这个方法不同于 [`isNaN`](https://es5.github.io/#x15.1.2.4) 对 undefind 和 其他非数值返回 true. ### 参数 1. value (\*) 要检查的值 ### 返回值 (boolean) 如果符合 `NaN` 返回 `true`,否则返回 `false` ### 示例 ``` _.isNaN(NaN); // => true _.isNaN(new Number(NaN)); // => true isNaN(undefined); // => true _.isNaN(undefined); // => false ```