function getRandom(x){ return Math.floor(Math.random()*x); }; getRandom(3); //會回傳0~2之間的隨機數字getRandom(5); //會回傳0~4之間的隨機數字.
確定! 回上一頁