The following function finds the sixth power of 2 i.e. 64
Choose the correct option to fill in the blanks on lines 4 and 7.
function power(n) {
if(n>1)
{
n=n-1
return___
}
else
{
return___}
print(power(6))
Answers
Answered by
0
Answer:
31
Explanation:
Similar questions