Square Root of π

Square root of the mathematical constant π.

Usage

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

SQRT_PI

Square root of the mathematical constant π.

var bool = ( SQRT_PI === 1.7724538509055160 );
// returns true

Examples

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

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