FLOAT32_MAX_BASE10_EXPONENT

The maximum base 10 exponent for a single-precision floating-point number.

Usage

var FLOAT32_MAX_BASE10_EXPONENT = require( '@stdlib/constants/float32/max-base10-exponent' );

FLOAT32_MAX_BASE10_EXPONENT

The maximum base 10 exponent for a single-precision floating-point number.

var bool = ( FLOAT32_MAX_BASE10_EXPONENT === 38 );
// returns true

Examples

var FLOAT32_MAX_BASE10_EXPONENT = require( '@stdlib/constants/float32/max-base10-exponent' );

console.log( FLOAT32_MAX_BASE10_EXPONENT );
// => 38

C APIs

Usage

#include "stdlib/constants/float32/max_base10_exponent.h"

STDLIB_CONSTANT_FLOAT32_MAX_BASE10_EXPONENT

Macro for the maximum base 10 exponent for a single-precision floating-point number.

Did you find this page helpful?