Maximum Natural Logarithm

Natural logarithm of the maximum double-precision floating-point number.

Usage

var FLOAT64_MAX_LN = require( '@stdlib/constants/float64/max-ln' );

FLOAT64_MAX_LN

Natural logarithm of the maximum double-precision floating-point number.

var bool = ( FLOAT64_MAX_LN === 709.782712893384 );
// returns true

Examples

var FLOAT64_MAX_LN = require( '@stdlib/constants/float64/max-ln' );

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