Created
June 11, 2024 11:04
-
-
Save Caballerog/c1ab04eaf08c7d73bd77228bbc19f615 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
export class Ingredient { | |
name: string; | |
amount: string; | |
constructor(name: string, amount: string) { | |
this.name = name; | |
this.amount = amount; | |
} | |
showDetails(): string { | |
return `Ingredient: ${this.name}, Amount: ${this.amount}`; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment