Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active April 26, 2017 04:56
Embed
What would you like to do?
JavaScript Generators - Simple generator function - Coding Blast - www.codingblast.com
function* simpleGenerator() {
yield 1;
yield 4;
}
for (let value of simpleGenerator()) {
console.log(value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment