Skip to content

Instantly share code, notes, and snippets.

@ragmha
Created November 26, 2018 09:04
Show Gist options
  • Save ragmha/03f2eb2edb37fd18f188d4085bec5485 to your computer and use it in GitHub Desktop.
Save ragmha/03f2eb2edb37fd18f188d4085bec5485 to your computer and use it in GitHub Desktop.
let pizza: { name: string; price: number; getName(): string } = {
name: "Plain Old Pepperoni",
price: 20,
getName() {
return pizza.name;
},
};
console.log(pizza.getName());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment