Skip to content

Instantly share code, notes, and snippets.

@fforres
Last active December 10, 2016 18:54
Show Gist options
  • Select an option

  • Save fforres/86255cea54ccde73aea89bb09ee2b652 to your computer and use it in GitHub Desktop.

Select an option

Save fforres/86255cea54ccde73aea89bb09ee2b652 to your computer and use it in GitHub Desktop.
function Dog(name) {
this.name = name;
}
Dog.bark = function() {
 console.log("Guau… from the Dog function")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment