Math.ceil()

Math.ceil() 静态方法始终向上舍入并返回大于或等于给定数字的最小整数。

¥The Math.ceil() static method always rounds up and returns the smallest integer greater than or equal to a given number.

Try it

语法

¥Syntax

js
Math.ceil(x)

参数

¥Parameters

x

一个号码。

返回值

¥Return value

大于或等于 x 的最小整数。它与 -Math.floor(-x) 的值相同。

¥The smallest integer greater than or equal to x. It's the same value as -Math.floor(-x).

描述

¥Description

因为 ceil()Math 的静态方法,所以你始终将其用作 Math.ceil(),而不是用作你创建的 Math 对象的方法(Math 不是构造函数)。

¥Because ceil() is a static method of Math, you always use it as Math.ceil(), rather than as a method of a Math object you created (Math is not a constructor).

示例

¥Examples

使用 Math.ceil()

¥Using Math.ceil()

js
Math.ceil(-Infinity); // -Infinity
Math.ceil(-7.004); // -7
Math.ceil(-4); // -4
Math.ceil(-0.95); // -0
Math.ceil(-0); // -0
Math.ceil(0); // 0
Math.ceil(0.95); // 1
Math.ceil(4); // 4
Math.ceil(7.004); // 8
Math.ceil(Infinity); // Infinity

规范

Specification
ECMAScript Language Specification
# sec-math.ceil

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看