eの累乗を求めるには

<html>
<head>
<title>Sample</title>
<script type="text/javascript"><!--
function calcExp(fObj)
{
n = fObj.num.value;
fObj.result.value = Math.exp(n);
}
// --></script>
</head>
<body>
対数値を求めます。<br><br>
<form>
 値:<input type="text" value="2" name="num"><br>
結果:<input type="text" name="result"><br>
<input type="button" value="eの累乗を求める" onClick="calcExp(this.form)">
</form>
</body>
</html>
・サンプルを実行
・サンプルをダウンロード
逆引きクイックリファレンス JavaScript 説明などは本書を参考にしてください。