Created
August 15, 2020 20:53
-
-
Save balascript/e8ad75dd0c90b5eee5105642ac40e2c2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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