数値の表示形式を指定するには

<html>
<head>
<title>Sample</title>
<script type="text/javascript"><!--
function convert(fObj)
{
n = eval(fObj.num.value);
fObj.result1.value = n.toExponential(2);
fObj.result2.value = n.toFixed(4);
fObj.result3.value = n.toPrecision(10);
}
// --></script>
</head>
<body>
値を指定形式で表示します。<br><br>
<form>
     値:<input type="text" value="2" name="num"><br>
  指数形式:<input type="text" name="result1"><br>
小数位置指定:<input type="text" name="result2"><br>
  桁数指定:<input type="text" name="result3"><br>
<input type="button" value="指定形式に変換する" onClick="convert(this.form)">
</form>
</body>
</html>
・サンプルを実行
・サンプルをダウンロード
逆引きクイックリファレンス JavaScript 説明などは本書を参考にしてください。