var FLOAT64_MAX = require( '@stdlib/constants/float64/max' );
Maximum double-precision floating-point number.
var bool = ( FLOAT64_MAX === 1.7976931348623157e+308 );
// returns true
var FLOAT64_MAX = require( '@stdlib/constants/float64/max' );
console.log( FLOAT64_MAX );
// => 1.7976931348623157e+308
#include "stdlib/constants/float64/max.h"
Macro for the maximum double-precision floating-point number.
@stdlib/constants/float16/max
: maximum half-precision floating-point number.@stdlib/constants/float32/max
: maximum single-precision floating-point number.