Math.ceil():向上取整 Math.floor():向下取整 Math.round():四捨五入 需要註意的比如:Math.ceil(-1.6) = -1.0; Math.round(-1.5) = -1; Math.round(-1.6) = -2; ...
Math.ceil():向上取整
Math.floor():向下取整
Math.round():四捨五入
需要註意的比如:Math.ceil(-1.6) = -1.0;
Math.round(-1.5) = -1;
Math.round(-1.6) = -2;