Skip to content

Instantly share code, notes, and snippets.

@balascript
Created August 15, 2020 20:48
Show Gist options
  • Save balascript/eff603193abad8db186f68b8ee42c504 to your computer and use it in GitHub Desktop.
Save balascript/eff603193abad8db186f68b8ee42c504 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