Negative Infinity

Double-precision floating-point negative infinity.

Usage

var FLOAT64_NINF = require( '@stdlib/constants/float64/ninf' );

FLOAT64_NINF

Double-precision floating-point negative infinity.

var bool = ( FLOAT64_NINF === -Infinity );
// returns true

Examples

var FLOAT64_NINF = require( '@stdlib/constants/float64/ninf' );

console.log( FLOAT64_NINF );
// => -Infinity
Did you find this page helpful?