1.min()和max()方法
找出一組數(shù)值中的最小和最大值
Math.min(5,4,3,2,1);
Math.max(5,4,3,2,1);
2.舍入方法
Math.ceil()執(zhí)行向上舍入床嫌,即它總是將數(shù)值向上舍入為最接近的整數(shù)韵丑;
Math.floor()執(zhí)行向下舍入,即它總是將數(shù)值向下舍入為最接近的整數(shù);
Math.round()執(zhí)行標(biāo)準(zhǔn)舍入,即它總是將數(shù)值四舍五入為最接近的整數(shù)歉眷;
Math.ceil(23.6);//24
Math.floor(23.6);//23
Math.round(23.6);//24
3.random()方法
Math.random()方法返回介于0到1之間一個(gè)隨機(jī)數(shù),不包括0和1颤枪。如果想大于這個(gè)范圍的話姥芥,可以套用一下公式:
值 = Math.floor(Math.random() * 總數(shù) + 第一個(gè)值)
Math.floor(Math.random()*10+1);//隨機(jī)產(chǎn)生一個(gè)1-10的數(shù)。
Math.floor(Math.random()*10+5);//隨機(jī)產(chǎn)生一個(gè)5-14的數(shù)汇鞭。
4.其他方法