Skip to content

Instantly share code, notes, and snippets.

@nhunzaker
Last active August 29, 2015 14:22
Show Gist options
  • Save nhunzaker/85c78ab0276284c08622 to your computer and use it in GitHub Desktop.
Save nhunzaker/85c78ab0276284c08622 to your computer and use it in GitHub Desktop.
function* range (start, end) {
while (start < end) yield start++
}
let [ a, b, c, d, e, f, g] = range(0, 10)
console.log(a, b, c, d, e, f, g)
console.log(...range(0, 10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment