Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Tribonacci function #6

Open
wants to merge 3 commits into
base: main-2021
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
implementation fib function that index order
  • Loading branch information
Ryutaro1988 committed May 30, 2021
commit 50600ec8cc09c28f8f8d264d91a7fc8e82889936
14 changes: 14 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
'use strict';

function fib(n){
if (n===0){
return 0;
}else if(n===1) {
return 1;
}
return fib(n-1)+fib(n-2);
}

const length = 40;
for(let i = 0;i <= length; i++){
console.log(fib(i));
}