gpt4 book ai didi

javascript - 特定范围的随机整数 : values are getting greater than max value

转载 作者:太空宇宙 更新时间:2023-11-04 16:19:15 24 4
gpt4 key购买 nike

我需要一个从 100screenHeight - 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);
}

最佳答案

您需要减少因子以获得正确的间隔。

 y = Math.floor(Math.random() * (max - min)) + min;
// ^ ^^^^^^

关于javascript - 特定范围的随机整数 : values are getting greater than max value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40805000/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com