Skip to content

Instantly share code, notes, and snippets.

@ragmha
Created November 26, 2018 12:53
Show Gist options
  • Save ragmha/19f35f48e7e4f4bf2bb473175b9849b7 to your computer and use it in GitHub Desktop.
Save ragmha/19f35f48e7e4f4bf2bb473175b9849b7 to your computer and use it in GitHub Desktop.
class Pizza {
public toppings: string[] = [];
constructor(readonly name: string) {}
public addToping(topping: string) {
this.toppings.push(topping);
}
}
const pizza = new Pizza("Pepperoni");
pizza.addToping("Pepper");
console.log(`Pizza => ${JSON.stringify(pizza)}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment