Skip to content

Instantly share code, notes, and snippets.

@gsans
Last active April 16, 2016 17:08
Show Gist options
  • Save gsans/a3dfca46121976bbbbe3 to your computer and use it in GitHub Desktop.
Save gsans/a3dfca46121976bbbbe3 to your computer and use it in GitHub Desktop.
function* range(start, end, step) {
while (start < end) {
yield start;
start += step;
}
}
for (let i of range(0, 10, 2)) {
console.log(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment