Skip to content

Instantly share code, notes, and snippets.

@Mayankgupta688
Created May 14, 2019 08:28
Show Gist options
  • Select an option

  • Save Mayankgupta688/2e982875be76f71e6ebc001d727ff811 to your computer and use it in GitHub Desktop.

Select an option

Save Mayankgupta688/2e982875be76f71e6ebc001d727ff811 to your computer and use it in GitHub Desktop.
function* customGenerator() {
yield 1;
yield 2;
yield 3;
}
var getIterator = customGenerator();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment