Natural logarithm of π

Natural logarithm of the mathematical constant π.

Usage

var LN_PI = require( '@stdlib/constants/float64/ln-pi' );

LN_PI

Natural logarithm of the mathematical constant π.

var bool = ( LN_PI === 1.1447298858494002 );
// returns true

Examples

var LN_PI = require( '@stdlib/constants/float64/ln-pi' );

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