Last active
January 6, 2023 19:28
-
-
Save va9iff/ba54a0d647729ca1cbd81a76cb85e68f to your computer and use it in GitHub Desktop.
fancy lookin' than regular closures
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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