Here's my code currently: function generateRandom(min, max) { return Math.floor(Math.random() * (max – min + 1)) + min; }. var test = generateRandom(1, 20) ...
確定! 回上一頁