isNaN_.isNaN(object)
Returns true if object is NaN.
Note: this is not the same as the native isNaN function, which will also return true for many other not-number values, such as undefined.
1 2 3 4 5 6 | _.isNaN(NaN); => true isNaN(undefined); => true _.isNaN(undefined); => false |
Please login to continue.