JavaScript Tutorial/Math/log

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

Math.log()

The log() method of the Math object is used to calculate the natural logarithm (base E) of a number.



<html>
    <body>
    <script language="JavaScript">
    <!--
    function doMath(){
        var inputNum=document.form1.input.value;
        var result = Math.log(inputNum);
        document.form1.answer.value = result;
    }
    -->
    </script>
    <form name=form1>
    This example calculates the natural log of the number entered.
    <br><br>
    Enter First Number:
    <input type="text" name="input" size=15>
    <input type="button" value="Calculate" onClick="doMath()">
    <br>
    The log is:
    <input type="text" name="answer" size=10>
    </form>
    </body>
    </html>