Skip to content

Instantly share code, notes, and snippets.

@balascript
Created August 15, 2020 20:53
Show Gist options
  • Save balascript/e8ad75dd0c90b5eee5105642ac40e2c2 to your computer and use it in GitHub Desktop.
Save balascript/e8ad75dd0c90b5eee5105642ac40e2c2 to your computer and use it in GitHub Desktop.
export class CoffeeBrewer{
constructor(name) {
this.beanName = name;
}
brew = () => {
console.log("brewing...", this.beanName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment