Minimum Base 2 Exponent

The minimum biased base 2 exponent for a normal double-precision floating-point number.

Usage

var FLOAT64_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float64/min-base2-exponent' );

FLOAT64_MIN_BASE2_EXPONENT

The minimum biased base 2 exponent for a normal double-precision floating-point number.

var bool = ( FLOAT64_MIN_BASE2_EXPONENT === -1022 );
// returns true

Examples

var FLOAT64_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float64/min-base2-exponent' );

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