The bias of a double-precision floating-point number's exponent.
var FLOAT64_EXPONENT_BIAS = require( '@stdlib/constants/float64/exponent-bias' );
The bias of a double-precision floating-point number's exponent.
var bool = ( FLOAT64_EXPONENT_BIAS === 1023 );
// returns true
var FLOAT64_EXPONENT_BIAS = require( '@stdlib/constants/float64/exponent-bias' );
console.log( FLOAT64_EXPONENT_BIAS );
// => 1023
#include "stdlib/constants/float64/exponent_bias.h"
Macro for the bias of a double-precision floating-point number's exponent.
@stdlib/constants/float16/exponent-bias
: the bias of a half-precision floating-point number's exponent.@stdlib/constants/float32/exponent-bias
: the bias of a single-precision floating-point number's exponent.