Max Int32

Maximum signed 32-bit integer.

Usage

var INT32_MAX = require( '@stdlib/constants/int32/max' );

INT32_MAX

Maximum signed 32-bit integer.

var bool = ( INT32_MAX === 2147483647 );
// returns true

Examples

var INT32_MAX = require( '@stdlib/constants/int32/max' );

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