JavaScriptサイコロのソースコード

<h1>サイコロ</h1>
<p id="result"></p>
<button onclick="saikoro()">サイコロを振る</button>

<script>
function saikoro() {
// サイコロの目をランダムに生成
let randomIndex = Math.floor(Math.random() * 6) + 1;

// 結果を表示する
document.getElementById("result").textContent = `出た目: ${randomIndex}`;
}
</script>

6+1なのはプログラムは0から始まるため+1としておかないと0~5の目がサイコロの目として出てしまいます。
それを防ぐため+1にしています。

コメント