Skip to content

Instantly share code, notes, and snippets.

@Spuffynism
Created July 1, 2018 04:06
Show Gist options
  • Select an option

  • Save Spuffynism/7769f4d9fc0a050414bdced1598efc0e to your computer and use it in GitHub Desktop.

Select an option

Save Spuffynism/7769f4d9fc0a050414bdced1598efc0e to your computer and use it in GitHub Desktop.
Recursive sequence emulating functional languages' "freeze" functions
function* sequence(x) {
yield x;
yield * sequence(x + 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment