📜  在两个数字之间选择一个数字 javascript 代码示例

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

代码示例2
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;