Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created April 7, 2020 15:26
Show Gist options
  • Save jsmanifest/12078f574bd86f57ce0a6292b1146611 to your computer and use it in GitHub Desktop.
Save jsmanifest/12078f574bd86f57ce0a6292b1146611 to your computer and use it in GitHub Desktop.
class FrogParadiseOwner {
constructor(frogOwner, frogOwnerLicense, frog) {
this.id = createId()
this.owner = frogOwner
this.license = frogOwnerLicense
this.frog = frog
}
createDocument() {
return JSON.stringify(this, null, 2)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment