Returns a random number between min and max */ function getRandomArbitary (min, max) { return Math.random() * (max - min) + min; }
確定! 回上一頁