Skip to content

Instantly share code, notes, and snippets.

@Damimd10
Created March 24, 2019 03:49
Show Gist options
  • Save Damimd10/d33e73f89a8bdbd880fad9e4112ceb3a to your computer and use it in GitHub Desktop.
Save Damimd10/d33e73f89a8bdbd880fad9e4112ceb3a to your computer and use it in GitHub Desktop.
const superman = {
strong: true,
power: 120,
powerUp: function() {
setTimeout(function() {
if (this.power) this.power += 10
}, 10)
},
}
superman.powerUp()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment