function randomUint(max) {
return Math.floor(Math.random() * max);
}
Math.random() * max
返回的是大于 0 的浮点数,不能四舍五入取整。用Math.floor()
对上一个结果向下取整:
function randomUint(max) {
return Math.floor(Math.random() * max);
}
Math.random() * max
返回的是大于 0 的浮点数,不能四舍五入取整。用Math.floor()
对上一个结果向下取整: