Skip to content

Instantly share code, notes, and snippets.

@kdnk
Created November 29, 2016 09:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdnk/0fea9e907bf5376bb2971b7e9be6dad3 to your computer and use it in GitHub Desktop.
Save kdnk/0fea9e907bf5376bb2971b7e9be6dad3 to your computer and use it in GitHub Desktop.
main()
function main () {
let a = []
for (let i = 0; i < 20; i++) {
a.push(fibonacci(i))
}
console.log(a.join(' '))
}
function fibonacci (n) {
if (n < 2) {
return 1
} else {
return fibonacci(n - 1) + fibonacci(n - 2)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment