# Smallest Normal > Smallest positive **normalized** [single-precision floating-point number][ieee754].
## Usage ```javascript var FLOAT32_SMALLEST_NORMAL = require( '@stdlib/constants/float32/smallest-normal' ); ``` #### FLOAT32_SMALLEST_NORMAL Smallest positive **normalized** [single-precision floating-point number][ieee754]. ```javascript var bool = ( FLOAT32_SMALLEST_NORMAL === 1.1754943508222875e-38 ); // returns true ```
## Examples ```javascript var FLOAT32_SMALLEST_NORMAL = require( '@stdlib/constants/float32/smallest-normal' ); console.log( FLOAT32_SMALLEST_NORMAL ); // => 1.1754943508222875e-38 ```