Fibonacci
Fill in the function body below so that the function call
fib(k)
returns the
k
th number in the Fibonacci sequence. If you use recursion, don't forget the base cases!
function fib(k) { }
Log in
-
Sign up