Skip to content

Instantly share code, notes, and snippets.

@ragmha
Created November 26, 2018 13:51
Show Gist options
  • Select an option

  • Save ragmha/dd9c7ce7534fcc590ceb899631f35e41 to your computer and use it in GitHub Desktop.

Select an option

Save ragmha/dd9c7ce7534fcc590ceb899631f35e41 to your computer and use it in GitHub Desktop.
class Cupon {
static allowed = ["Peepurini", "Blazing Fluerino"];
static create(percentage: number) {
return `PIZZA_RESTURANT_${percentage}%`;
}
}
console.log(Cupon.create(25));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment