Skip to content

Instantly share code, notes, and snippets.

@itsananderson
Created July 22, 2014 06:28
Show Gist options
  • Save itsananderson/47a5db2b1b99821c8eba to your computer and use it in GitHub Desktop.
Save itsananderson/47a5db2b1b99821c8eba to your computer and use it in GitHub Desktop.
Fibonacci generator in ES6
function* fib() {
var a = 0;
var b = 1;
while(true) {
yield a;
b = a+b;
a = b-a;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment