Max Value

Maximum single-precision floating-point number.

Usage

var FLOAT32_MAX = require( '@stdlib/constants/float32/max' );

FLOAT32_MAX

Maximum single-precision floating-point number.

var bool = ( FLOAT32_MAX === 3.4028234663852886e+38 );
// returns true

Examples

var FLOAT32_MAX = require( '@stdlib/constants/float32/max' );

console.log( FLOAT32_MAX );
// => 3.4028234663852886e+38
Did you find this page helpful?