📜  typescript 随机数 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:27.010000             🧑  作者: Mango

代码示例6
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 
}