Smallest Normal

Smallest positive normalized single-precision floating-point number.

Usage

var FLOAT32_SMALLEST_NORMAL = require( '@stdlib/constants/float32/smallest-normal' );

FLOAT32_SMALLEST_NORMAL

Smallest positive normalized single-precision floating-point number.

var bool = ( FLOAT32_SMALLEST_NORMAL === 1.1754943508222875e-38 );
// returns true

Examples

var FLOAT32_SMALLEST_NORMAL = require( '@stdlib/constants/float32/smallest-normal' );

console.log( FLOAT32_SMALLEST_NORMAL );
// => 1.1754943508222875e-38
Did you find this page helpful?