The minimum base 10 exponent for a subnormal double-precision floating-point number.
var FLOAT64_MIN_BASE10_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/min-base10-exponent-subnormal' );
The minimum base 10 exponent for a subnormal double-precision floating-point number.
var bool = ( FLOAT64_MIN_BASE10_EXPONENT_SUBNORMAL === -324 );
// returns true
var FLOAT64_MIN_BASE10_EXPONENT_SUBNORMAL = require( '@stdlib/constants/float64/min-base10-exponent-subnormal' );
console.log( FLOAT64_MIN_BASE10_EXPONENT_SUBNORMAL );
// => -324
#include "stdlib/constants/float64/min_base10_exponent_subnormal.h"
Macro for the minimum base 10 exponent for a subnormal double-precision floating-point number.
@stdlib/constants/float64/max-base10-exponent-subnormal
: the maximum base 10 exponent for a subnormal double-precision floating-point number.@stdlib/constants/float64/min-base10-exponent
: the minimum base 10 exponent for a normal double-precision floating-point number.@stdlib/constants/float64/min-base2-exponent-subnormal
: the minimum biased base 2 exponent for a subnormal double-precision floating-point number.