---
title: math.round
summary: null
url: >-
  https://www.fastly.com/documentation/reference/vcl/functions/math-rounding/math-round
---

```
FLOAT math.round(FLOAT x)
```

**Available in:** all subroutines

Rounds `x` to the nearest integer, with ties rounding away from zero
(also known as _commercial rounding_).

## Return Value

If `x` is `math.NAN`, a NaN will be returned.

If `x` is integral, ±0, `x` itself is returned.

If `x` is `math.POS_INFINITY` or
`math.NEG_INFINITY`, an infinity
of the same sign is returned.

Otherwise, the rounded value of `x` is returned.
