Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created April 7, 2020 15:24
Show Gist options
  • Save jsmanifest/db14a77bc23c7372064321223a8f02fe to your computer and use it in GitHub Desktop.
Save jsmanifest/db14a77bc23c7372064321223a8f02fe to your computer and use it in GitHub Desktop.
class Frog {
constructor({ name, gender, weight }) {
this.name = name
this.gender = gender
this.weight = weight
}
jump() {
console.log('jumped')
}
}
class Toad {
constructor(habitat, frog) {
this.habitat = habitat
this.frog = frog
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment