Skip to content

Instantly share code, notes, and snippets.

@lbjay
Created May 30, 2019 19:41
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 lbjay/e5f7e13e6a3af957fc35c703e6ac3b18 to your computer and use it in GitHub Desktop.
Save lbjay/e5f7e13e6a3af957fc35c703e6ac3b18 to your computer and use it in GitHub Desktop.
honk!
const car = {
honked: 0,
honk() {
console.log('beep!');
this.honked += 1;
},
};
console.log(car.honked);
car.honk();
console.log(car.honked);
car.honk();
console.log(car.honked);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment