Copyright © tutorialspoint.com
This method returns the smallest integer greater than or equal to a number.
Math.ceil( x ) ; |
Here is the detail of parameters:
x : A numbers.
Returns the smallest integer greater than or equal to a number.
<html>
<head>
<title>JavaScript Math ceil() Method</title>
</head>
<body>
<script type="text/javascript">
var value = Math.ceil(45.95);
document.write("First Test Value : " + value );
var value = Math.ceil(45.20);
document.write("<br />Second Test Value : " + value );
var value = Math.ceil(-45.95);
document.write("<br />Third Test Value : " + value );
var value = Math.ceil(-45.20);
document.write("<br />Fourth Test Value : " + value );
</script>
</body>
</html>
|
This will produce following result:
First Test Value : 46 Second Test Value : 46 Third Test Value : -45 Fourth Test Value : -45 |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com