JavaScript Tutorial/Math/SQRT2

Материал из Web эксперт
Версия от 08:24, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Math.SQRT2

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>


The value of the square root of 2: Math.SQRT2

<html>
<head>
<title>The Properties of the Math object</title>
<script type="text/javascript" language="javascript">
<!-- //
function DisplayMath(){
    document.write("<br/><P>The value of the square root of 2 is: " + Math.SQRT2 + "</p>");
}
// -->
</script>
</head>
<body onload="DisplayMath()">
</body>
</html>