pow
Table of Contents
Function
pow — exponential function of any base
Synopsis
pow(x: number, y: number) -> float64
Description
The pow function returns the value x
raised to the power of y
.
The return value is a float64 or an error.
Examples
yield pow(this, 5)
2
Loading...