Returns the closest integer value to the argument with ties rounding to positive infinity.
Maths
round(<parameters>)
round(<decimal>)
round(<integer>)
Return an integer.
round(3.14)
Returns 3.
round(3.54)
Returns 4.
round(-3.14)
Returns -3.
round(3)
Returns 3.