随机数
Posted 九转功成
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机数相关的知识,希望对你有一定的参考价值。
// min-max之间的随机整数 var s=Math.round(Math.random()*(max-min)+min);
// 或者
Math.floor(Math.random()*max+min);
Math.ceil(number)//向上取整,返回大于等于n的最小整数 Math.floor(number) //向下取整,返回小于等于n的最大整数 Math.round(number) //正真的四舍五入
以上是关于随机数的主要内容,如果未能解决你的问题,请参考以下文章