Bias

The bias of a double-precision floating-point number's exponent.

Usage

var FLOAT64_EXPONENT_BIAS = require( '@stdlib/constants/float64/exponent-bias' );

FLOAT64_EXPONENT_BIAS

The bias of a double-precision floating-point number's exponent.

var bool = ( FLOAT64_EXPONENT_BIAS === 1023 );
// returns true

Examples

var FLOAT64_EXPONENT_BIAS = require( '@stdlib/constants/float64/exponent-bias' );

console.log( FLOAT64_EXPONENT_BIAS );
// => 1023
Did you find this page helpful?