返回介于 0(包含) ~ 1(不包含) 之间的一个随机数:
Math.random(); \
实例:
1.介于 1 到 10 之间的一个随机数:
Math.floor((Math.random()*10)+1);
2.介于 1 到 100 之间的一个随机数
Math.floor((Math.random()*100)+1);
3.返回 min(包含)~ max(不包含)之间的数字:
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min) ) + min;
}
4.返回 min(包含)~ max(包含)之间的数字
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1) ) + min;
}