i dont understand this javascript result. 😖 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

i dont understand this javascript result. 😖

i dont understand the result. can someone pls explain to me where this result is coming from? function fib(num) { if(num<=2) return 1; return fib(num-1)+fib(num-2); } document.write(fib(6)); //i think that means: return 1 as long as num<=2. that is right i think. in this scope the return value is 1. //result is 8. —> but why? 6-5 + 6-2= 1+4= 5 !!???!! i dont understand it. 😟

18th Dec 2019, 1:57 PM
Mylisa_beth
Mylisa_beth - avatar
5 Answers
+ 2
| fib(2) + fib(1) | | fib(3) + fib(2) | | fib(4) + fib(3) | | fib(5) + fib(4) | ------------------------ Consider the above as a stack. So the call on the top both become 1 and they return the same value as they pop out of the stack one by one. So probably 8. Please correct me if I'm wrong.
18th Dec 2019, 2:17 PM
Avinesh
Avinesh - avatar
+ 1
Are you not missing an else after return 1? Just asking.
18th Dec 2019, 2:04 PM
Avinesh
Avinesh - avatar
+ 1
It is just recursion so until your num becomes less than or equal to 2, no value will be returned and the fib() will be called again and again.
18th Dec 2019, 2:31 PM
Avinesh
Avinesh - avatar
0
that question is out of a js challenge. i just copied. but yes, i also thought that the else was missing....
18th Dec 2019, 2:07 PM
Mylisa_beth
Mylisa_beth - avatar
0
does it mean i return the amount of the fib and not the value?if so, why the amount or number of fibs is not 4? the right answer is 8, you are right. 👍
18th Dec 2019, 2:26 PM
Mylisa_beth
Mylisa_beth - avatar