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

2024年11月22日 07:25
有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;
     }