Round
This Flow Script tutorial explains how to use the Round function with syntax and examples.
Last updated
Was this helpful?
This Flow Script tutorial explains how to use the Round function with syntax and examples.
The Round function returns the value of x rounded to the nearest integer.
The syntax for the Round function is:
Round(x)
x - the value to be rounded.
The Round function returns an integer.
Let's look at some Round function examples and explore how to use the Round function.
Round(1.8)
Result: 2
Round(1.5)
Result: 2
Round(2.5)
Result: 2Last updated
Was this helpful?
Was this helpful?