JavaScript Tutorial/Math/exp

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

Math.exp()

Syntax math.exp(num) Description calculate an exponent where the base is Euler"s constant (the base of the natural logarithms).



<html>
    <body>
    <script language="JavaScript">
    <!--
    function doMath(){
        var inputNum=document.form1.input.value;
        var result = Math.exp(inputNum);
        document.form1.answer.value = result;
    }
    -->
    </script>
    <form name=form1>
    Enter First Number:
    <input type="text" name="input" size=10>
    <input type="button" value="Calculate" onClick="doMath()">
    <br>
    The exponent is:
    <input type="text" name="answer" size=10>
    </form>
    </body>
    </html>