get random number between 400 and 480 in javascript
本问题已经有最佳答案,请猛点这里访问。
我对javascript中的
我试图返回一个介于400和500之间的数字,我所做的是:
1 | var y = Math.floor((Math.random() * 400) + 100); |
但此代码可能返回
试试这个:
1 | var y = Math.floor((Math.random() * 80) + 400); |
想
我对javascript中的
我试图返回一个介于400和500之间的数字,我所做的是:
1 | var y = Math.floor((Math.random() * 400) + 100); |
但此代码可能返回
试试这个:
1 | var y = Math.floor((Math.random() * 80) + 400); |
想