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