const n = getRandom(6) + 1; と定義してもよいですか?

結果は同じになるため問題ありませんが、直観的に分かりにくくなるかもしれません。
2024年7月29日
ユーザー
function getRandom(max) {
    return Math.floor(Math.random() * max);
  }
  for (let i = 0; i < 10; i++) {
    const n = getRandom(6) + 1;
    console.log(`${i}:${n}`);
  }

max+1 にしなくても反映されたのですが、動画にある例との違いを教えてください。

この回答を見るにはプレミアムプランへの登録が必要です

プレミアムプランとは?

このレッスンの質問と回答(4)