javascript中循环输出5个不大于100的随机数

2024-11-22 07:25:19
推荐回答(2个)
回答1:

var hehe = Math.floor(Math.random()*40)+60;
alert(hehe);

顺便说下,我楼上写的是一句正常的js代码。
Math是js里面自有的一个数学对象。它的floor方法去小数,random方法生成0-1的小数。*表示乘法,+表示加法。

回答2:

 for(var i = 0; i < 5 ; i ++) {
         var id = Math.random()*100;
     }