xxxxxxxxxx
// math.ceil() method in javascript:
// The ceil() method rounds the specified double value upward to the nearest integer and returns it.
// The rounded value will be equal to the mathematical integer.
// That is, the value 3.24 will be rounded to 4.0 which is equal to integer 4.
// We can onlu use float numbers in ceil().
// EXAMPLE: 1
let floating_num = Math.ceil(2.65);
console.log(floating_num);
// OUTPUT: 3
// EXAMPLE: 2
let floating_num_2 = Math.ceil(-2.65);
console.log(floating_num_2);
// OUTPUT: -2
xxxxxxxxxx
// The Math.ceil() static method always rounds up and returns the smaller integer greater than or equal to a given number.
console.log(Math.ceil(.95));
// Expected output: 1
console.log(Math.ceil(4));
// Expected output: 4
console.log(Math.ceil(7.004));
// Expected output: 8
console.log(Math.ceil(-7.004));
// Expected output: -7
xxxxxxxxxx
let number = 4.6;
let result = Math.ceil(number);
console.log(result); // Output: 5
xxxxxxxxxx
var myNumber = 22.22;
var output = Math.ceil(myNumber);
console.log(output);
//Output: 23