Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created April 7, 2020 15:23
Show Gist options
  • Save jsmanifest/c13d16da800939ef19eb7fbcd0f1a4f0 to your computer and use it in GitHub Desktop.
Save jsmanifest/c13d16da800939ef19eb7fbcd0f1a4f0 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')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment