floor and ceil in javascript code example

Example 1: javascript ceiling

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

Example 2: math.floor js

console.log(Math.floor(5.95));
// expected output: 5

console.log(Math.floor(5.05));
// expected output: 5

console.log(Math.floor(5));
// expected output: 5

console.log(Math.floor(-5.05));
// expected output: -6

Example 3: math ceil floor

//round up to the next highest value
Math.ceil(11.49); //12 

//the greatest integer that is less than or equal to x
Math.floor(11.49); //11

Example 4: javascript math ceiling function

Math.ceil()

Tags:

Misc Example