Max Int8

Maximum signed 8-bit integer.

Usage

var INT8_MAX = require( '@stdlib/constants/int8/max' );

INT8_MAX

Maximum 8-bit signed integer.

var bool = ( INT8_MAX === 127 );
// returns true

Examples

var INT8_MAX = require( '@stdlib/constants/int8/max' );

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