Max Uint8

Maximum unsigned 8-bit integer.

Usage

var UINT8_MAX = require( '@stdlib/constants/uint8/max' );

UINT8_MAX

Maximum unsigned 8-bit integer.

var bool = ( UINT8_MAX === 255 );
// returns true

Examples

var UINT8_MAX = require( '@stdlib/constants/uint8/max' );

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