Swift Language Numbers Exponentiation

30% OFF - 9th Anniversary discount on Entity Framework Extensions until December 15 with code: ZZZANNIVERSARY9

Example

In Swift, we can exponentiate Doubles with the built-in pow() method:

pow(BASE, EXPONENT)

In the code below, the base (5) is set to the power of the exponent (2) :

let number = pow(5.0, 2.0) // Equals 25


Got any Swift Language Question?