Skip to content

Instantly share code, notes, and snippets.

Created February 11, 2013 05:02
Show Gist options
  • Save anonymous/4752789 to your computer and use it in GitHub Desktop.
Save anonymous/4752789 to your computer and use it in GitHub Desktop.
var
a = 0,
b = 1,
t;
while (n-- > 0)
{
t = a;
a = b;
b += t;
}
return a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment