📜  两个数字之间的随机整数 javascript 代码示例

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

代码示例3
Math.floor(Math.random() * (max - min + 1)) + min;

// Between 0 and max
Math.floor(Math.random() * (max + 1));

// Between 1 and max
Math.floor(Math.random() * max) + 1;