Exponentiation

suggest change

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

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents