js ceil

JavaScript
Math.ceil(1.2);
// 2Math.ceil(.95);    // 1
Math.ceil(4);      // 4
Math.ceil(7.004);  // 8
Math.ceil(-0.95);  // -0
Math.ceil(-4);     // -4
Math.ceil(-7.004); // -7
Math.ceil()ceil ( float $value ) : float
Returns the next highest integer value by rounding up value if necessary.
Source

Also in JavaScript: