Arithmetic functions
ceil
Round fractions up
- Description
- Example
- Result
ceil(number)
ceil(5.3)
6
floor
Round fractions down
- Description
- Example
- Result
floor(number)
floor(5.3)
5
min
Find lowest value
- Description
- Example
- Result
min(number, number, ...)
min(2, 3, 1, 6, 7)
1
max
Find highest value
- Description
- Example
- Result
max(number, number, ...)
max(2, 3, 1, 6, 7)
7
round
Rounds a float
- Description
- Example
- Result
round(number, precision)
round(4.7541, 0)
round(4.7541, 1)
round(4.7541, 2)
5
4.8
4.75