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.
_.isNaN(NaN); => true isNaN(undefined); => true _.isNaN(undefined); => false
Please login to continue.