码迷,mamicode.com
首页 > 微信 > 详细

微信小程序 取随机数

时间:2019-02-14 10:28:17      阅读:1275      评论:0      收藏:0      [点我收藏+]

标签:程序   random   现在   使用   小数   math   数位   随机数   and   

Math.random()的取值范围是:

0<=Math.random()<1  随机小数

Math.floor(X) =X的整数位
例如
Math.floor(6.999)  ===  6
Math.floor(39.001)   ===  39
Math.floor(8)   ===  8

应用实例:

Math.random()和Math.floor(X) 结合起来就可以获得一个你想要的范围内的整数。

如:现在要从50<=  、 <100内取一个随机数:

Math.random()*50  //这样我们就能得到一个 >=0 且 <50的随机小数

加50:Math.random()*50 + 50    //现在这个数就 >=50 且 <100

再使用Math.floor(Math.random()*50 + 50)取整

结束

 

微信小程序 取随机数

标签:程序   random   现在   使用   小数   math   数位   随机数   and   

原文地址:https://www.cnblogs.com/QZBOY/p/10373088.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!