Find a method on the JavaScript Math object that returns the smallest integer greater than or equal to a decimal number. code example
Example 1: javascript ceiling
var ceiling1 = Math.ceil(4.7); //5
var ceiling2 = Math.ceil(-3.4); //-3
Example 2: javascript math ceiling function
Math.ceil()