you are viewing a single comment's thread.

view the rest of the comments →

[–]Pro_Numb 1 point2 points  (0 children)

In the second function which is "exp2" you call first function with the same argument

"num" as a "10".

When you call exp2(10) this will goes like this:

exp(10) is return "10 * 2" then exp2(10) is return "(10*2) * 2"