js生成一定範圍內的隨機整數

weixin_30588675發表於2020-04-05
Math.floor(Math.random()*(m-n+1)+n)

  

Math.floor(Math.random() * (50 - 1 + 1) + 1);

 

生成1-50內的隨機整數

轉載於:https://www.cnblogs.com/mmykdbc/p/11290425.html

相關文章