//1. Math.ceil()用作向上取整。 //2. Math.floor()用作向下取整。 //3. Math.round() 我们数学中常用到的四舍五入取整。 alert(Math.ceil(10/3));//4 alert(Math.floor(10/3));//3 alert(Math.round(10/3));//3