offline version v3


57 of 264 menu

Math.SQRT1_2 property

The Math.SQRT1_2 property contains the square root of 1/2.

Syntax

Math.SQRT1_2;

Example

Let's output the square root of 1/2:

console.log(Math.SQRT1_2);

The code execution result:

0.7071067811865476

See also

  • the Math.SQRT2 property
    that contains the square root of two
enru