Skip to content

Instantly share code, notes, and snippets.

@va9iff
Last active January 6, 2023 19:28
Show Gist options
  • Save va9iff/ba54a0d647729ca1cbd81a76cb85e68f to your computer and use it in GitHub Desktop.
Save va9iff/ba54a0d647729ca1cbd81a76cb85e68f to your computer and use it in GitHub Desktop.
fancy lookin' than regular closures
const count = ((counter = 0) => () => counter++)()
console.log(count(), count(), count()) // 0 1 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment