js takes a random number in a random range. function getRandom(min,max){. return Math.floor(Math.random() * (max - min + 1) + min);. } ...
確定! 回上一頁