Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Created September 17, 2019 04:09
Show Gist options
  • Save djD-REK/6582fe34c2c97bec076cf288de141578 to your computer and use it in GitHub Desktop.
Save djD-REK/6582fe34c2c97bec076cf288de141578 to your computer and use it in GitHub Desktop.
const actions = {
step: 0,
printCount: function () {
console.log(this.step)
},
takeStep: function () {
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