Skip to content

Instantly share code, notes, and snippets.

@schabluk
Last active May 10, 2017 12:14
Show Gist options
  • Save schabluk/59d956f0705896f8bf1eafa8888651c0 to your computer and use it in GitHub Desktop.
Save schabluk/59d956f0705896f8bf1eafa8888651c0 to your computer and use it in GitHub Desktop.
Create ordinal numbers
class Store {
// Ordinal numbers sequence.
ordinal = null
// Ordinal numbers generator.
ordinalGenerator = function * () {
let i = 0
while (true) {
yield i++
}
}
constructor () {
// Initialize ordinal generator sequence.
this.ordinal = this.ordinalGenerator()
this.ordinal.next().value
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment