ceiling
Round a number up to the nearest integer.
Syntax
y = ceiling[value]
Attributes
value- a set of numbers
Description
y = ceiling[value] rounds the elements of value up to the nearest integers.
Examples
Calculate the ceiling of 34.2
search
y = ceiling[value: 34.2]
bind @browser
[#div text: y]
The result is 35.