Skip to content

Instantly share code, notes, and snippets.

@hw0k
Last active April 13, 2020 10:25
Show Gist options
  • Save hw0k/a70c7c532a0b86c8ba517443e0a53e43 to your computer and use it in GitHub Desktop.
Save hw0k/a70c7c532a0b86c8ba517443e0a53e43 to your computer and use it in GitHub Desktop.
FP Intro 9
function* infiniteValue(acc = 0) {
yield acc;
yield* infiniteValue(acc + 1);
}
const iter = infiniteValue();
console.log(iter.next().value); // 0
console.log(iter.next().value); // 1
console.log(iter.next().value); // 2
console.log(iter.next().value); // 3
console.log(iter.next().value); // 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment