JavaScript中的Math.ceil()函数

ceil()Math对象的函数接受浮点数,并返回大于或等于给定数字的最接近的整数。如果给定的数字本身是整数,则此函数返回相同的值。

语法

其语法如下

Math.ceil(169.36)

示例

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.ceil(169.36);
      document.write("ceil value of the of the given number: "+result);
   </script>
</body>
</html>

输出结果

ceil value of the of the given number: 170