Skip to content

Files

Latest commit

46d049b · Nov 12, 2023

History

History

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

See Also