600 B
600 B
title | description | menu | weight | ||||||
---|---|---|---|---|---|---|---|---|---|
math.round() function | The math.round() function returns the nearest integer, rounding half away from zero. |
|
301 |
The math.round()
function returns the nearest integer, rounding half away from zero.
Output data type: Float
import "math"
math.round(x: 2.12)
// Returns 2.0
Parameters
x
The value used in the operation.
Data type: Float
Special cases
math.round(x: ±0) // Returns ±0
math.round(x: ±Inf) // Returns ±Inf
math.round(x: NaN) // Returns NaN