Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created January 16, 2020 00:57
Show Gist options
  • Save jsmanifest/a0ad936e99ad47200d54b153107aedf1 to your computer and use it in GitHub Desktop.
Save jsmanifest/a0ad936e99ad47200d54b153107aedf1 to your computer and use it in GitHub Desktop.
function Frog(name, gender) {
this.name = name
this.gender = gender
this.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