参考: https://www.runoob.com/jsref/jsref-random.html
返回介于 0(包含) ~ 1(不包含) 之间的一个随机数:
Math.random();
如果要获取1-10的一个随机数
Math.floor((Math.random()*10)+1);
以下函数返回 min(包含)~ max(不包含)之间的数字:
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min) ) + min;
}
以下函数返回 min(包含)~ max(包含)之间的数字:
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1) ) + min;
}