js Math方法獲取隨機數

function random_int(minNum,maxNum){ var chioces = maxNum - minNum + 1 ; //可能數的總數 return Math.floor(Math.random()*chioces + minNum) ; }
相關文章
相關標籤/搜索