Skip to content

Instantly share code, notes, and snippets.

@seekerlee
Created January 19, 2019 16:37
Show Gist options
  • Save seekerlee/fdf661de31b39acca49b97394830287c to your computer and use it in GitHub Desktop.
Save seekerlee/fdf661de31b39acca49b97394830287c to your computer and use it in GitHub Desktop.
JS fibonacci generator
function* fib() {
let a = 0, b = 1
while(true) {
const tmp = a + b
yield tmp
a = b
b = tmp
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment