isNaN
最后更新于:2022-04-02 00:02:44
## 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
```
';