FLOAT64_MIN_BASE10_EXPONENT

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

Usage

var FLOAT64_MIN_BASE10_EXPONENT = require( '@stdlib/constants/float64/min-base10-exponent' );

FLOAT64_MIN_BASE10_EXPONENT

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

var bool = ( FLOAT64_MIN_BASE10_EXPONENT === -308 );
// returns true

Examples

var FLOAT64_MIN_BASE10_EXPONENT = require( '@stdlib/constants/float64/min-base10-exponent' );

console.log( FLOAT64_MIN_BASE10_EXPONENT );
// => -308

C APIs

Usage

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

STDLIB_CONSTANT_FLOAT64_MIN_BASE10_EXPONENT

Macro for the minimum base 10 exponent for a normal double-precision floating-point number.

Did you find this page helpful?