Created
November 26, 2018 09:04
-
-
Save ragmha/03f2eb2edb37fd18f188d4085bec5485 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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