# Max Value > Maximum [half-precision floating-point number][half-precision-floating-point-format].
## Usage ```javascript var FLOAT16_MAX = require( '@stdlib/constants/float16/max' ); ``` #### FLOAT16_MAX Maximum [single-precision floating-point number][half-precision-floating-point-format]. ```javascript var bool = (FLOAT16_MAX === 65504.0 ); // returns true ```
## Examples ```javascript var FLOAT16_MAX = require( '@stdlib/constants/float16/max' ); console.log( FLOAT16_MAX ); // => 65504.0 ```