|
|
Ceil Math functionWe can get the ceiling of a number by using match ceil() function. Or by using ceil math function we can get the smallest integer that is greater than or equal to given number. So by using this we can get the next higher integer of a given number. Here is the syntax.
Math.ceil(number)
Let us try with some examples.
document.write (Math.ceil(11.257)); // output 12
document.write ("<br>----<br>");
document.write (Math.ceil(1.56)); // output 2
document.write ("<br>----<br>");
document.write (Math.ceil(-3.564)); // output -3
document.write ("<br>----<br>");
document.write (Math.ceil(-7.164)); // output -7
document.write ("<br>----<br>");
You can read the php math ceil function
Found anything wrong or wants to improve the code by adding more features? Post your short comment here or use the Forum
| |
| | |
|
|
|
|
|