/    Sign up×
Community /Pin to ProfileBookmark

raising to power

I have an assigment to write a JavaScript program to define a recurcive function that calculates the result of two to power ‘n’ where n is any integer. I have to do this without using built in functions.I also have to concider that 2 to power n is 2*2 to power (n-1) recurcive. i have to use the fact that 2 to power 0 is 1 as my base case.

as the second part of the assignmet i hae to do the same for 8 and 16. I also have to the write a general function to find power of ‘m’ to power ‘n’ also without using any built in functions.

The function has to calculate this even if n is a negative number.

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@FangSep 07.2005 — It's your assignment; give it a try! If you get stuck, we can point you in the right direction.
Copy linkTweet thisAlerts:
@BigMoosieSep 07.2005 — I have no moral objections:

function power(m, n){
return n > 0 ? m * power(m, n-1) : (n < 0 ? m / power(m, 1-n) : 1);
}
×

Success!

Help @Liphoto spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...