Skip to content

Instantly share code, notes, and snippets.

@mahdavipanah
Last active April 16, 2021 10:58
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 mahdavipanah/f80a0c5cd6270f8bb6965d8aff6a8354 to your computer and use it in GitHub Desktop.
Save mahdavipanah/f80a0c5cd6270f8bb6965d8aff6a8354 to your computer and use it in GitHub Desktop.
const called = (function () {
let count = 0
return () => {
count++
console.log(`Called: ${count}`)
}
})()
called() // Called: 1
called() // Called: 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment