Math.pow()

Get the value of a base raised to a power.

Signature

Math.pow(base: Number, exponent: Number): Number

Description

Gets the value of a base raised to a power.

Parameters

Parameter Type Required Description

base

Number

Yes

Base number.

exponent

Number

Yes

Exponent number.

Return value

Type Description

Number

Number representing base taken to the power of exponent.

Examples

Math.pow(2, 8)
256

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!