Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@anjanaraveendra
Created October 20, 2015 14:16
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 anjanaraveendra/dc7ada764c132ebf730c to your computer and use it in GitHub Desktop.
Save anjanaraveendra/dc7ada764c132ebf730c to your computer and use it in GitHub Desktop.
var i;
var fib = [];
fib[0] = 0;
fib[1] = 1;
for(i=2; i<=10; i++)
{
fib[i] = fib[i-2] + fib[i-1];
}
alert(fib);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment