director Question
director Question
Out of context: Reply #4
- Started
- Last post
- 6 Responses
- unknown0
use the function integer()
for example:
integer(numericExpression)
this rounds the value of numericExpression to the nearest whole integer.
example:
put integer(3.75)
-- returns 4put integer(3.45)
-- returns 3Cheers.