+ 1
1
15. Write a JavaScript function to compute the value of bn where n is the exponent and b is the bases. Accept b and n from the user and display the result. .
1 Answer
+ 2
function power(b, n)
{
return Math.pow(b, n);
}
This should work, I haven't been able to test it myself.