ceil()
Table of Contents
Overview
The ceil() function takes a decimalValue as an argument, and returns the nearest largest integer to the given decimal value.
Return Type
- Number
Syntax
<variable> = <decimalValue>.ceil();
(OR)
<variable> = ceil( <decimalValue>);
Parameter | Description | Data type |
---|---|---|
<variable> | Variable which will contain the returned value. | NUMBER |
<decimalValue> | The nearest largest integer to this value will be returned. | DECIMAL |
Examples
number = 10.1;
ceilValue = number.ceil(); // returns 11;
ceilValue = number.ceil(); // returns 11;