In Swift, we can exponentiate Doubles with the built-in pow() method:
Double
pow()
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