📜  随机数 0 到 3 - Javascript 代码示例

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

代码示例1
// Between any two numbers
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;