Update _.isNaN doc note with a reference to Number.isNaN. [ci skip]

This commit is contained in:
John-David Dalton
2016-04-02 08:02:36 -07:00
parent cfd25cec75
commit 579cf00d10

View File

@@ -10805,9 +10805,10 @@
/** /**
* Checks if `value` is `NaN`. * Checks if `value` is `NaN`.
* *
* **Note:** This method is not the same as * **Note:** This method is based on
* [`isNaN`](https://es5.github.io/#x15.1.2.4) which returns `true` for * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as
* `undefined` and other non-numeric values. * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for
* `undefined` and other non-number values.
* *
* @static * @static
* @memberOf _ * @memberOf _