###JS Control Flow Homework
- Write a function that calculates and shows the value of one number to the power of another.
- The function should take 2 arguments - one number as the base, one as the exponent.
- An example could be
2^10with the function looking something likecalculateExponent(2,10). - Submit a pull request.