Precision

Effective number of bits in the significand of a double-precision floating-point number.

Usage

var FLOAT64_PRECISION = require( '@stdlib/constants/float64/precision' );

FLOAT64_PRECISION

Effective number of bits in the significand of a double-precision floating-point number.

var bool = ( FLOAT64_PRECISION === 53 ); // including implicit bit
// returns true

Examples

var FLOAT64_PRECISION = require( '@stdlib/constants/float64/precision' );

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