Skip to content

Instantly share code, notes, and snippets.

@clayallsopp
Forked from anonymous/gist:4752789
Last active December 12, 2015 09:38
Show Gist options
  • Save clayallsopp/4752792 to your computer and use it in GitHub Desktop.
Save clayallsopp/4752792 to your computer and use it in GitHub Desktop.
var
a = 0,
b = 1,
t;
while (n > 0)
{
t = a;
a = b;
b += t;
n = n - 1;
}
return a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment