生成随机数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成随机数相关的知识,希望对你有一定的参考价值。
Math.random()方法可返回介于 0 ~ 1 之间的一个随机数(包括0,不包括1) 。所以,n*Math.random()得到的值的范围为0 ~ n,m+n*Math.random()得到的值的范围为m ~ m+n
Math.round(x)方法可把一个数字舍入为最接近的整数。
对于 0.5,该方法将进行上舍入。
Math.round(0.49)//0
Math.round(0.50)//1
Math.round(-0.50)//0
所以,取的min~max之间的整数的方法:
function randomNum(min,max) { var range = max - min; var rand = Math.random(); return(min + Math.round(rand * range)); }
如果填的值为类似(60,40)也没关系,因为Math.round(rand * range)为负数,min+负数的结果还是在设定的取值范围内
Math.floor(5)//5
Math.floor(5.9)//5
Math.floor(-5.9)//-6
以上是关于生成随机数的主要内容,如果未能解决你的问题,请参考以下文章