PDA

View Full Version : What does the NaN function do?



sinelogixtech
11-21-2018, 06:05 AM
What does the NaN function do?

RH-Calvin
03-10-2020, 01:09 PM
The NaN property represents "Not-a-Number" value. This property indicates that a value is not a legal number. The NaN property is the same as the Number. Nan property. Tip: Use the isNaN() global function to check if a value is a NaN value.

tomsfashion2019
03-12-2020, 05:22 AM
NaN stands for 'not-a-number'. The function isNaN determines the argument or the value is a NaN. The function returns true if the argument is not a number, otherwise returns false

Lewis-H
03-13-2020, 03:52 PM
In computing, NaN, standing for not a number, is a member of a numeric data type that can be interpreted as a value that is undefined or unrepresentable, especially in floating-point arithmetic. Quiet NaNs are used to propagating errors resulting from invalid operations or values.

Pratiksha
03-23-2020, 12:50 PM
NaN stands for 'not-a-number'. The function isNaN determines the argument or the value is a NaN. The function returns true if the argument is not a number, otherwise returns false.