随机数Math.floor(Math.random()*52+1)

Posted huanghuali

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机数Math.floor(Math.random()*52+1)相关的知识,希望对你有一定的参考价值。

 

Math.random():获取0~1随机数

Math.floor() method rounds a number DOWNWARDS to the nearest integer, and returns the result. (小于等于 x,且与 x 最接近的整数。)
其实返回值就是该数的整数位:
Math.floor(0.666)   -->  0
Math.floor(39.2783)   -->  39

所以我们可以使用Math.floor(Math.random())去获取你想要的一个范围内的整数。
如:现在要从1~52内取一个随机数:
首先Math.random()*52  //这样我们就能得到一个 >=0 且 <52的数
然后加1:Math.random()*52 + 1    //现在这个数就 >=1 且 <53
再使用Math.floor取整

最终: Math.floor(Math.random()*52 + 1)

这就能得到一个取值范围为1~52的随机整数了.

以上是关于随机数Math.floor(Math.random()*52+1)的主要内容,如果未能解决你的问题,请参考以下文章

随机数,Math.random();

随机数,Math.random();

随机颜色

JS生成随机颜色(rgb)

javascript如何产生60-100的随机数

微信小程序生成随机数 0或者1 js代码