hugo/docs/content/en/functions/math/Floor.md
2023-12-04 15:24:01 +01:00

17 lines
335 B
Markdown

---
title: math.Floor
description: Returns the greatest integer value less than or equal to the given number.
categories: []
keywords: []
action:
aliases: []
related:
- functions/math/Ceil
- functions/math/Round
returnType: float64
signatures: [math.Floor VALUE]
---
```go-html-template
{{ math.Floor 1.9 }} → 1
```