2018-05-07 03:32:16 +02:00
|
|
|
---
|
2020-08-15 03:51:06 +02:00
|
|
|
layout: "language"
|
2018-12-20 05:35:11 +01:00
|
|
|
page_title: "pow - Functions - Configuration Language"
|
2018-05-07 03:32:16 +02:00
|
|
|
sidebar_current: "docs-funcs-numeric-pow"
|
|
|
|
description: |-
|
|
|
|
The pow function raises a number to a power.
|
|
|
|
---
|
|
|
|
|
|
|
|
# `pow` Function
|
|
|
|
|
2018-12-11 01:14:33 +01:00
|
|
|
`pow` calculates an exponent, by raising its first argument to the power of the second argument.
|
2018-05-07 03:32:16 +02:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
```
|
|
|
|
> pow(3, 2)
|
|
|
|
9
|
|
|
|
> pow(4, 0)
|
|
|
|
1
|
|
|
|
```
|