Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Created September 17, 2019 04:09
Show Gist options
  • Save djD-REK/27ac065080ddc47bc02b06870314d8b4 to your computer and use it in GitHub Desktop.
Save djD-REK/27ac065080ddc47bc02b06870314d8b4 to your computer and use it in GitHub Desktop.
const actions = {
step: 0,
printCount() {
console.log(this.step)
},
takeStep() {
this.step++
}
}
actions.takeStep()
actions.printCount() // 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment