乱数を求めるには

<html>
<head>
<title>Sample</title>
</head>
<body>
1から6までの乱数値を表示します。<br><br>
<script type="text/javascript"><!--
for (i=0; i<20; i++)
{
n = Math.floor(Math.random() * 6) + 1;
document.write('<img src="'+n+'.gif">');
}
// --></script>
</body>
</html>
・サンプルを実行
・サンプルをダウンロード
逆引きクイックリファレンス JavaScript 説明などは本書を参考にしてください。