Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created January 16, 2020 00:57
Show Gist options
  • Save jsmanifest/9d8406fccbba630f32c41bec4c05aa6d to your computer and use it in GitHub Desktop.
Save jsmanifest/9d8406fccbba630f32c41bec4c05aa6d to your computer and use it in GitHub Desktop.
function Frog(name, gender) {
this.name = name
this.gender = gender
}
Frog.prototype.leap = function(feet) {
console.log(`Leaping ${feet}ft into the air`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment