1.min()和max()方法
找出一组数值中的最小和最大值
Math.min(5,4,3,2,1);
Math.max(5,4,3,2,1);
2.舍入方法
Math.ceil()执行向上舍入,即它总是将数值向上舍入为最接近的整数;
Math.floor()执行向下舍入,即它总是将数值向下舍入为最接近的整数;
Math.round()执行标准舍入,即它总是将数值四舍五入为最接近的整数;
Math.ceil(23.6);//24
Math.floor(23.6);//23
Math.round(23.6);//24
3.random()方法
Math.random()方法返回介于0到1之间一个随机数,不包括0和1。如果想大于这个范围的话,可以套用一下公式:
值 = Math.floor(Math.random() * 总数 + 第一个值)
Math.floor(Math.random()*10+1);//随机产生一个1-10的数。
Math.floor(Math.random()*10+5);//随机产生一个5-14的数。
4.其他方法