Skip to content

Instantly share code, notes, and snippets.

@triptych
Last active January 15, 2022 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save triptych/3a3a3f4c6b75c4c542dd74d7fb589f47 to your computer and use it in GitHub Desktop.
Save triptych/3a3a3f4c6b75c4c542dd74d7fb589f47 to your computer and use it in GitHub Desktop.
class Animal {
constructor(name, gender) {
this.name = name;
this.gender = gender;
}
get label(){
return `${this.name} - ${this.gender}`
}
}
export {Animal}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment