📅  最后修改于: 2022-03-11 15:03:30.433000             🧑  作者: Mango
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min; //The maximum is exclusive and the minimum is inclusive
}