Skip to content

Instantly share code, notes, and snippets.

@pomle
Created June 22, 2020 15:16
Show Gist options
  • Save pomle/9dec8cde11fa965fabd89e0812d71222 to your computer and use it in GitHub Desktop.
Save pomle/9dec8cde11fa965fabd89e0812d71222 to your computer and use it in GitHub Desktop.
const fib = (n) => {
let a = 0, b = 1, c;
for (let i = 0; i < n; i++) {
c = a;
a = b + a;
b = c;
}
return a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment