1
100
からscreenHeight - 400
までの特定の範囲のランダムな整数が必要です。特定の範囲のランダムな整数:値が最大値より大きくなります
コードは次のとおりですが、なぜ最大値よりも大きな値がありますか?
for (var i = 0; i < 100; i++) {
const screenHeight = $(document).height(),
max = screenHeight - 400,
min = 100,
y = Math.floor(Math.random() * max) + min;
console.log(max, y, y > max);
}