blob: a4384305d5b80308284c8890ce2d7123baf2c9d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
title: math.Pow
description: Returns the first number raised to the power of the second number.
categories: []
keywords: []
params:
functions_and_methods:
aliases: [pow]
returnType: float64
signatures: [math.Pow VALUE1 VALUE2]
---
```go-html-template
{{ math.Pow 2 3 }} → 8
```
|