返回介于 0(包含) ~ 1(不包含) 之间的一个随机数:
返回值是0.0 ~ 1.0(不包含) 之间的一个伪随机数。
Math.random();
返回介于 1 到 10 之间的一个随机数:
Math.floor((Math.random()*10)+1);
返回介于 1 到 100 之间的一个随机数:
Math.floor((Math.random()*100)+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;
}
网友评论