# Number of Bytes > Size (in bytes) of a 16-bit unsigned integer.
## Usage ```javascript var UINT16_NUM_BYTES = require( '@stdlib/constants/uint16/num-bytes' ); ``` #### UINT16_NUM_BYTES Size (in bytes) of a 16-bit unsigned integer. ```javascript var bool = ( UINT16_NUM_BYTES === 2 ); // returns true ```
## Examples ```javascript var UINT16_NUM_BYTES = require( '@stdlib/constants/uint16/num-bytes' ); console.log( UINT16_NUM_BYTES ); // => 2 ```