pow(a: f64, b: f64) → f64

Category: [math](builtinsmath)_

Raise a to the power b.

ParameterTypeDescriptionRemarks
af64The first operand.
bf64The second operand.
returnsf64The result.
wcl
pow(2, 10)   // 2 raised to the 10th power → 1024.0