function randInt(min, max) { return Math.round((Math.random() * Math.abs(max - min)) + min); } console.log("Random integer: " + ...
確定! 回上一頁