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/1f973498d4981eab71380aa8f8e06830 to your computer and use it in GitHub Desktop.
Save mahdavipanah/1f973498d4981eab71380aa8f8e06830 to your computer and use it in GitHub Desktop.
const {called} = new class {
count = 0
called = () => {
this.count++
console.log(`Called: ${this.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