Div.md - hugo - [fork] hugo port for 9front
(HTM) git clone https://git.drkhsh.at/hugo.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
Div.md (343B)
---
1 ---
2 title: math.Div
3 description: Divides the first number by one or more numbers.
4 categories: []
5 keywords: []
6 params:
7 functions_and_methods:
8 aliases: [div]
9 returnType: any
10 signatures: [math.Div VALUE VALUE...]
11 ---
12
13 If one of the numbers is a [`float`](g), the result is a `float`.
14
15 ```go-html-template
16 {{ div 12 3 2 }} → 2
17 ```