How do you round a number to the nearest integer in Liquid? 🔢
### Explanation
To round numbers in Liquid, use the `round` filter:
```liquid
{{ 4.6 | round }}
{{ 4.3 | round }}
{{ 4.5 | round: 1 }}
```
Key points:
- Math filters available:
- `round`: Rounds to nearest integer
- `ceil`: Rounds up
- `floor`: Rounds down
- `plus`: Adds numbers
- `minus`: Subtracts numbers
- `times`: Multiplies numbers
- `divided_by`: Divides numbers
- Can specify decimal places: `| round: 2`
- Works with variables and literal numbers
- Useful for price formatting and calculations
- Division always returns a float
Reference: [Shopify Math Filters](https://shopify.dev/docs/api/liquid/filters#math-filters)
Answer Options:
- | round
- | floor
- | ceil
- | int