Skip to content

Instantly share code, notes, and snippets.

@dwaite
Created October 26, 2010 04:50
Show Gist options
  • Save dwaite/646341 to your computer and use it in GitHub Desktop.
Save dwaite/646341 to your computer and use it in GitHub Desktop.
function MyObject(name) {
this.name = name
}
MyObject.prototype.toString = function() { return "My name is " + this.name }
> a = new MyObject("node")
> a.toString()
My name is node
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment