JavaScript中Math.ceil()和Math.round()方法之间有什么区别?

Math.ceil() Math.round()方法的不同之处在于,前者在向上舍入(朝较大值)的方向上将数字四舍五入为其最接近的整数,而后者在向下舍入(朝较低值)。让我们分别检查这两种方法。

Math.ceil()

Math.ceil()方法将作为参数传递的数字四舍五入到最接近的整数,以获得更大的值。

示例

在下面的示例中,当将数字5.34作为参数传递时,Math.ceil()将其四舍五入为6,该值比实际数字大。

<html>
<body>
<script>
   document.write(Math.ceil(5.34));
</script>
</body>
</html>

输出结果

6

Math.round()

Math.round()方法将作为参数传递的数字四舍五入到最接近的整数,以得到较低的值。

示例

在下面的示例中,当将数字5.34作为参数传递时,Math.round()将其四舍五入为5,该值比实际数字低。

<html>
<body>
<script>
   document.write(Math.round(5.34));
</script>
</body>
</html>

输出结果

5