Skip to content

Latest commit

 

History

History
91 lines (53 loc) · 1.88 KB

File metadata and controls

91 lines (53 loc) · 1.88 KB

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

See Also