function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
getRndInteger(1,32)

相关文章: