639 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			639 B
		
	
	
	
	
	
	
	
title
| 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 bto the power of the exponente.
- 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 the variable poweris implementing theraiseToPowerfunction correctly.
Solution:
let power = raiseToPower(base, exp);