Number of Bytes

Size (in bytes) of a 16-bit unsigned integer.

Usage

var UINT16_NUM_BYTES = require( '@stdlib/constants/uint16/num-bytes' );

UINT16_NUM_BYTES

Size (in bytes) of a 16-bit unsigned integer.

var bool = ( UINT16_NUM_BYTES === 2 );
// returns true

Examples

var UINT16_NUM_BYTES = require( '@stdlib/constants/uint16/num-bytes' );

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