Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 330 Bytes

File metadata and controls

6 lines (5 loc) · 330 Bytes

###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^10 with the function looking something like calculateExponent(2,10).
  • Submit a pull request.