-4

生成的数字是否可能在 30 到 90 之间。或者它只是在 0 到 n 之间生成?

4

2 回答 2

0

生成 0 到 60 之间的数字(您似乎知道它是如何工作的),然后添加 30。

于 2012-11-05T18:04:53.937 回答
0
// Returns a random integer between min and max
// Using Math.round() will give you a non-uniform distribution!
function getRandomInt(min, max) {
  return Math.floor(Math.random() * (max - min + 1)) + min;
}

来自Mozilla 开发者网络

于 2012-11-05T18:05:32.467 回答