LOG2E

Base 2 logarithm of the mathematical constant e.

Usage

var LOG2E = require( '@stdlib/constants/float64/log2-e' );

LOG2E

Base 2 logarithm of the mathematical constant e.

var bool = ( LOG2E === 1.4426950408889634 );
// returns true

Examples

var LOG2E = require( '@stdlib/constants/float64/log2-e' );

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