hugo/docs/content/en/functions/math/Floor.md

18 lines
335 B
Markdown
Raw Normal View History

---
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
```