freeCodeCamp/guide/english/certifications/javascript-algorithms-and-d.../debugging/catch-arguments-passed-in-t.../index.md

639 B

title
Catch Arguments Passed in the Wrong Order When Calling a Function

Catch Arguments Passed in the Wrong Order When Calling a Function

function raiseToPower(b, e) {
  return Math.pow(b, e);
}
  • The above function is used to raise the base number b to the power of the exponent e.
  • The function must be called specifically with variables in the correct order. Otherwise the function will mix up both variables and return an undesired answer.
  • Make sure tha variable power is implementing the raiseToPower function correctly.

Solution:

let power = raiseToPower(base, exp);