Math.ceil()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Math.ceil() は静的メソッドで、常に切り上げを行い、与えられた数以上の最小の整数を返します。

試してみましょう

構文

js
Math.ceil(x)

引数

x

数値です。

返値

x 以上の最小の整数です。これは -Math.floor(-x) と同じ値です。

解説

ceil()Math オブジェクトの静的メソッドなので、 Math オブジェクトを生成してメソッドとして使用するのではなく、常に Math.ceil() として使用するようにしてください (Math はコンストラクターではありません)。

Math.ceil() の使用

js
Math.ceil(-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); // 無限大

仕様書

Specification
ECMAScript Language Specification
# sec-math.ceil

ブラウザーの互換性

Report problems with this compatibility data on GitHub
desktopmobileserver
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
Deno
Node.js
ceil

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

関連情報