Skip to content

Instantly share code, notes, and snippets.

@korECM
Created July 11, 2020 17:10
Show Gist options
  • Save korECM/73359a7638995f24663eb9183e66031c to your computer and use it in GitHub Desktop.
Save korECM/73359a7638995f24663eb9183e66031c to your computer and use it in GitHub Desktop.
let myCoffee = new Americano();
console.log(`${myCoffee.getDescription()}는 ${myCoffee.cost()}원입니다~`);
let myCoffee2 = new CaffeeLatte();
myCoffee2 = new Ice(myCoffee2);
myCoffee2 = new Whip(myCoffee2);
myCoffee2 = new Whip(myCoffee2);
console.log(`${myCoffee2.getDescription()}는 ${myCoffee2.cost()}원입니다~`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment