Square Root of 2π

Square root of the mathematical constant π times 2.

Usage

var SQRT_TWO_PI = require( '@stdlib/constants/float64/sqrt-two-pi' );

SQRT_TWO_PI

Square root of the mathematical constant π times 2.

var bool = ( SQRT_TWO_PI === 2.5066282746310007 );
// returns true

Examples

var SQRT_TWO_PI = require( '@stdlib/constants/float64/sqrt-two-pi' );

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