|
||
---|---|---|
.. | ||
docs | ||
lib | ||
package.json | ||
README.md |
Maximum Base 2 Exponent
The maximum biased base 2 exponent for a double-precision floating-point number.
Usage
var FLOAT64_MAX_BASE2_EXPONENT = require( '@stdlib/constants/float64/max-base2-exponent' );
FLOAT64_MAX_BASE2_EXPONENT
The maximum biased base 2 exponent for a double-precision floating-point number.
var bool = ( FLOAT64_MAX_BASE2_EXPONENT === 1023 );
// returns true
Examples
var FLOAT64_MAX_BASE2_EXPONENT = require( '@stdlib/constants/float64/max-base2-exponent' );
console.log( FLOAT64_MAX_BASE2_EXPONENT );
// => 1023