Contact Us 1-800-596-4880

pow

pow(base: Number, power: Number): Number

Raises the value of a base number to the specified power.

Parameters

Name Description

base

A number (Number type) that serves as the base.

power

A number (Number type) that serves as the power.

Example

This example raises the value a base number to the specified power. Note that you can also use the pow(base,power) notation (for example, pow(2,3) to return 8).

Source

%dw 2.0
output application/json
---
[ (2 pow 3), (3 pow 2), (7 pow 3) ]

Output

[ 8, 9, 343 ]