返回介于min和之间的随机整数max:
function randombetween(min, max) { return math.floor(math.random() * (max - min 1) min); }
例子:
// randombetween(0,10); math.floor(math.random() * 11); // randombetween(1,10); math.floor(math.random() * 10) 1; // randombetween(5,20); math.floor(math.random() * 16) 5; // randombetween(-10,-2); math.floor(math.random() * 9) - 10;