JavaScript Math.ceil()
示例
Math.ceil(1.4);
自己尝试 »
let a = Math.ceil(0.60);
let b = Math.ceil(0.40);
let c = Math.ceil(5);
let d = Math.ceil(5.1);
let e = Math.ceil(-5.1);
let f = Math.ceil(-5.9);
自己尝试 »
描述
The Math.ceil()
方法将一个数字向上舍入到最接近的整数。
JavaScript 舍入函数
The Math.abs() 方法The Math.ceil() 方法
The Math.floor() 方法
The Math.round() 方法
The Math.fround() 方法
The Math.trunc() 方法
语法
Math.ceil(x)
参数
参数 | 描述 |
x | 必需的。 一个数字。 |
返回值
类型 | 描述 |
数字 | 向上舍入到最接近整数的数字。 |
浏览器支持
Math.ceil()
是 ECMAScript1 (ES1) 功能。
ES1 (JavaScript 1997) 在所有浏览器中都得到完全支持。
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 是 |