Skip to content

Instantly share code, notes, and snippets.

@hitsujiwool
Created January 24, 2014 02:36
Show Gist options
  • Save hitsujiwool/8591104 to your computer and use it in GitHub Desktop.
Save hitsujiwool/8591104 to your computer and use it in GitHub Desktop.
function* fib() {
var i = 0,
j = 1,
res;
while (true) {
res = i + j;
i = j;
j = res;
yield res;
}
}
var g = fib();
console.log(g.next().value);
console.log(g.next().value);
console.log(g.next().value);
console.log(g.next().value);
console.log(g.next().value);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment