Math.ceil in js code example

Example 1: javascript ceiling

var ceiling1 = Math.ceil(4.7); //5 
var ceiling2 = Math.ceil(-3.4); //-3

Example 2: js ceil

Math.ceil(1.2);
// 2

Example 3: Math.ceil

//The Math.ceil() function always rounds a
//number up to the next largest integer.

//Note: Math.ceil(null) returns integer 0
//and does not give a NaN error.

Math.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

Example 4: math.ceil

Math.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

Example 5: javascript math ceiling function

Math.ceil()