📜  区间javascript代码示例中的随机整数

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

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