Skip to content

Instantly share code, notes, and snippets.

@korECM
Created July 11, 2020 15:06
Show Gist options
  • Save korECM/492d1abf925588be2f2b77f405f41d44 to your computer and use it in GitHub Desktop.
Save korECM/492d1abf925588be2f2b77f405f41d44 to your computer and use it in GitHub Desktop.
class Espresso extends Beverage {
constructor() {
super();
this.description = "에스프레소~";
}
cost() {
return 3000;
}
}
class Americano extends Beverage {
constructor() {
super();
this.description = "아메키라노~";
}
cost() {
return 4000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment