Max Value

Maximum half-precision floating-point number.

Usage

var FLOAT16_MAX = require( '@stdlib/constants/float16/max' );

FLOAT16_MAX

Maximum single-precision floating-point number.

var bool = (FLOAT16_MAX === 65504.0 );
// returns true

Examples

var FLOAT16_MAX = require( '@stdlib/constants/float16/max' );

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