Skip to content

Instantly share code, notes, and snippets.

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