Skip to content

Instantly share code, notes, and snippets.

@radzserg
Last active April 1, 2020 17:04
Show Gist options
  • Select an option

  • Save radzserg/ce0da774c877f8cba4230b5db02cc3bd to your computer and use it in GitHub Desktop.

Select an option

Save radzserg/ce0da774c877f8cba4230b5db02cc3bd to your computer and use it in GitHub Desktop.
class Cook {
public makeDinner() {
console.log("Dinner served");
}
}
const mom = new Cook();
mom.makeDinner();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment