js中随机数的形成需要的用到Math.random(),上一篇博客中提到了它,指的是0~1之间数,那么今天要说的其实是随机整数的形成,所以还要用到Math.round()的方法,这个是四舍五入的方法。
接下来看一系列公式代码:
window.onload=function(){ Math.round(3.4); // 3 四舍五入的方法 Math.random(); // 0~1之间的数 //0-1之间的整数 Math.round(Math.random()); //0-10之间整数公式 Math.round(Math.random()*10); //5-10之间整数公式 Math.round(Math.random()*5+5); //10-20之间整数公式 Math.round(Math.random()*10+10); //20-100之间整数公式 Math.round(Math.random()*80+20); //0-x之间整数公式 Math.round(Math.random()*x); //x-y之间整数公式 Math.round(Math.random()*(y-x)+x); //1-x之间整数公式 Math.ceil( Math.random()*x); //Math.ceil()向上取整 };
我觉得这些是常见的一些会应用到的公式,了解其原理的更好,若是不了解那便记牢即可,应该会用到。
好了,今天就这样了!