Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function f(x){
- if (x <= 2) return x;
- return f(x-2) + f(x-1);
- }
- console.log( f(8) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement