Skip to content

Instantly share code, notes, and snippets.

@korECM
Created July 11, 2020 17:07
Show Gist options
  • Save korECM/e33a6779e846130a7cbb0132065590e0 to your computer and use it in GitHub Desktop.
Save korECM/e33a6779e846130a7cbb0132065590e0 to your computer and use it in GitHub Desktop.
class CaffeeLatte extends Beverage {
constructor() {
super();
this.description = "카페라떼";
}
cost() {
return 4500;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment