Math.ceil(x) -- 数値引数以上の最小の整数 (丸め関数) を返し、数値を切り上げます。
Ceilとはシーリングの略で、中国語で「上限」を意味します。
参考URL:http://www.dreamdu.com/javascript/Math.ceil/
ceil 関数の構文
Math.ceil(x);
ceil関数パラメータ
x -- はタイプ番号の数値です
ceil関数の戻り値
x 以上の最小の整数を返します。
セル関数の例
document.write(Math.ceil(5.99));
document.write(Math.ceil(-5.99));
document.write(Math.ceil(1.01));
document.write(Math.ceil(-1.01));
結果:
6
-5
2
-1