Created
April 7, 2020 15:26
-
-
Save jsmanifest/12078f574bd86f57ce0a6292b1146611 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
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