js產生1到100的隨機數
#js產生隨機數使用math.random()函數
Math.random()
具體實現:
1、定義一個random()函數,原理是隨機數和最大值減最小值的差相乘最後再加上最小值。
function random(min, max) { return Math.floor(Math.random() * (max - min)) + min; }
2、使用方法
for (var i = 1; i <= 10; i++) { console.log(random(1, 100)); }
3、效果圖
#本文來自js教學 欄目,歡迎學習!
以上是js產生1到100的隨機數的詳細內容。更多資訊請關注PHP中文網其他相關文章!