Skip to content

Instantly share code, notes, and snippets.

@Flygenring
Created June 12, 2013 11:31
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 Flygenring/5764532 to your computer and use it in GitHub Desktop.
Save Flygenring/5764532 to your computer and use it in GitHub Desktop.
Just a quick thought on generating Fibonacci numbers
for(var f=[0,1], i=0; i<20; f[i+2]=f[i++]+f[i]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment