Skip to content

Instantly share code, notes, and snippets.

@jkup
Created March 9, 2017 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkup/df3893ba8ede8cb12e8c5f0d868cb725 to your computer and use it in GitHub Desktop.
Save jkup/df3893ba8ede8cb12e8c5f0d868cb725 to your computer and use it in GitHub Desktop.
function* createName() {
console.log(yield)
}
const name = createName()
name.next('Jon')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment