Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Math.ceil()

概要

引数として与えた数以上の最小の整数を返します。

Math のメソッド(静的
実装されたバージョン JavaScript 1.0
ECMAScript エディション ECMA-262

構文

Math.ceil(x)

引数

x
数値(数字)

詳細

ceilMath オブジェクトの静的なメソッドなので、自ら生成した Math オブジェクトのメソッドとしてではなく、常に、Math.ceil() として使用するようにしてください。

例: Math.ceil の使用

以下の関数は、変数 x の切り上げた値を返します。

function getCeil(x) {
   return Math.ceil(x)
}

45.95 を getCeil に渡した場合、このメソッドは、46 を返します。 -45.95 を渡した場合は、-45 を返します。

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: teoli, ethertank, Potappo
 最終更新者: teoli,