Skip to content

Instantly share code, notes, and snippets.

@bitsmanent
Created October 10, 2018 18:53
Show Gist options
  • Save bitsmanent/caa78ec95dc62bb39677285fa1a26711 to your computer and use it in GitHub Desktop.
Save bitsmanent/caa78ec95dc62bb39677285fa1a26711 to your computer and use it in GitHub Desktop.
fibonacci (the go way)
function fib() {
var a = 0, b = 1;
return function() {
var t = a;
a = b;
b = t + b;
return a;
};
}
var f = fib();
console.log(f(), f(), f(), f(), f());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment