Math.ceil(); //向上取整。
Math.floor(); //向下取整。
Math.round(); //四舍五入。
Math.random(); //0 ~ 1 之间的一个随机数。【包含0不包含1】 //比
如0.8647578968666494
Math.ceil(Math.random()*10); // 获取从1到10的随机整数 。
Math.floor(Math.random()*10); //获取0到9的随机整数。
Math.round(Math.random()*10); //获取0到10的随机整数。
获取1-10的随机整数,代码如下:
function fn(n,m){
var num = m - n + 1
return Math.floor(Math.random() * num + n)
}
console.log(fn(1,10))
是不是很简单的呢?快去体验一下吧!