pow(a: f64, b: f64) → f64
Category: [math](builtinsmath)_
Raise a to the power b.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| a | f64 | The first operand. | — |
| b | f64 | The second operand. | — |
| returns | f64 | The result. | — |
wcl
pow(2, 10) // 2 raised to the 10th power → 1024.0