isNaN()

Determines whether or not a value is actually NaN. Different from the global isNaN function because it only tests for the presence of the NaN value.

This function is valid in v2.13.0 to v2.24.3. This function has been downloaded 66 times.

Parameter

{number|*} value
Value to test to see if it is NaN.

Returns

{boolean}
If value is NaN then true is returned, otherwise false is returned.

Requiring Function

This function is directly required by the following function:

  • findByProp()
    Looks for the first value in an array whose given property matches the criteria.