Skip to content

Instantly share code, notes, and snippets.

@fforres
Created December 10, 2016 19:27
Show Gist options
  • Select an option

  • Save fforres/33fa104d059d8a6c14cd608e0429decd to your computer and use it in GitHub Desktop.

Select an option

Save fforres/33fa104d059d8a6c14cd608e0429decd to your computer and use it in GitHub Desktop.
function Dog(name) {
this.name = name;
this.bark = function () {
console.log("Guau!")
}
}
var bailey = new Dog("Bailey");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment