Skip to content

Instantly share code, notes, and snippets.

@YiqinZhao
Created March 20, 2018 11:25
Show Gist options
  • Save YiqinZhao/ff3210cf9b8077d954884b5d57a5e0f3 to your computer and use it in GitHub Desktop.
Save YiqinZhao/ff3210cf9b8077d954884b5d57a5e0f3 to your computer and use it in GitHub Desktop.
[Self increasement function]
function * selfIncreasement() {
let i = 0
while (true) {
i++
yield console.log(i)
}
}
let a = selfIncreasement()
a.next()
a.next()
a.next()
a.next()
a.next()
a.next()
a.next()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment