NAN

Double-precision floating-point NaN.

Usage

var FLOAT64_NAN = require( '@stdlib/constants/float64/nan' );

FLOAT64_NAN

Double-precision floating-point NaN.

var bool = ( FLOAT64_NAN !== FLOAT64_NAN );
// returns true

Examples

var FLOAT64_NAN = require( '@stdlib/constants/float64/nan' );

console.log( FLOAT64_NAN );
// => NaN

C APIs

Usage

#include "stdlib/constants/float64/nan.h"

STDLIB_CONSTANT_FLOAT64_NAN

Macro for double-precision floating-point NaN.

Did you find this page helpful?