📜  范围内的 javascript 随机数 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:30.433000             🧑  作者: Mango

代码示例6
function getRandomInt(min, max) {
  min = Math.ceil(min);
  max = Math.floor(max);
  return Math.floor(Math.random() * (max - min)) + min; //The maximum is exclusive and the minimum is inclusive
}