Skip to content

Instantly share code, notes, and snippets.

@naush
Created December 27, 2015 17:30
Show Gist options
  • Save naush/27179c381a994256a44d to your computer and use it in GitHub Desktop.
Save naush/27179c381a994256a44d to your computer and use it in GitHub Desktop.
ES6 Generator example
*range (begin, end, interval = 1) {
for (let number = begin; number <= end; number += interval) {
yield number
}
}
let hours = [...this.range(0, 360, 30)] // [0, 30, 90, 120, 150, 180, 210, 240, 270, 300, 330, 360]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment