Skip to content

Instantly share code, notes, and snippets.

@bendc
Created December 15, 2015 17:15
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bendc/b91fd1e31c171c9626c1 to your computer and use it in GitHub Desktop.
Save bendc/b91fd1e31c171c9626c1 to your computer and use it in GitHub Desktop.
Fibonacci Series
const fib = (n, seq = [0, 1]) =>
n - 2 ? fib(n - 1, [...seq, seq.slice(-2).reduce((a, b) => a + b)]) : seq;
fib(10); // 0, 1, 1, 2, 3, 5, 8, 13, 21, 34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment