Max Int16

Maximum signed 16-bit integer.

Usage

var INT16_MAX = require( '@stdlib/constants/int16/max' );

INT16_MAX

Maximum signed 16-bit integer.

var bool = ( INT16_MAX === 32767 );
// returns true

Examples

var INT16_MAX = require( '@stdlib/constants/int16/max' );

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