%dw 2.0
output application/json
---
[ (2 pow 3), (3 pow 2), (7 pow 3) ]DataWeave
pow
pow(base: Number, power: Number): Number
Raises the value of a base number to the specified power.
Parameters
| Name | Description |
|---|---|
|
A number ( |
|
A number ( |
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
Output
[ 8, 9, 343 ]JSON



