Skip to content

Instantly share code, notes, and snippets.

@73nko
Created May 14, 2019 10:41
Show Gist options
  • Save 73nko/fa2c7c4fe896ef7deb97308979b4f5d2 to your computer and use it in GitHub Desktop.
Save 73nko/fa2c7c4fe896ef7deb97308979b4f5d2 to your computer and use it in GitHub Desktop.
Create a infinite fibbonachi list.
function* fib() {
let a = 1, b = 0;
for (; ;) {
[a, b] = [b, a + b];
yield b;
}
}
const f = fib();
for (let i = 0; i < 6; i++)
console.info(f.next().value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment