Math.SQRT2 : SQRT2 « Math « JavaScript Tutorial






The SQRT2 property returns the value of the square root of 2.

This is approximately equal to 1.414.

<html>
    <body>
    <script language="JavaScript">
    <!--
    function doMath(){
        var result = Math.SQRT2;
        document.form1.answer.value = result;
    }
    -->
    </script>
    <form name=form1>
    The square root of 2 is:
    <input type="text" name="answer" size=20>
    <input type="button" value="Calculate" onClick='doMath()'>
    <br>
    </form>
    </body>
    </html>








9.26.SQRT2
9.26.1.Math.SQRT2
9.26.2.The value of the square root of 2: Math.SQRT2