Skip to content

Instantly share code, notes, and snippets.

@korECM
Created July 11, 2020 17:04
Show Gist options
  • Save korECM/e2f98d2896f86e42e6e3ac098c4e140c to your computer and use it in GitHub Desktop.
Save korECM/e2f98d2896f86e42e6e3ac098c4e140c to your computer and use it in GitHub Desktop.
let myCoffee = new Americano();
myCoffee = new Ice(myCoffee);
console.log(`${myCoffee.getDescription()}는 ${myCoffee.cost()}원입니다~`);
let myCoffee2 = new Americano();
myCoffee2 = new Ice(myCoffee2);
myCoffee2 = new Ice(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