Skip to content

Instantly share code, notes, and snippets.

@caubry
Created January 16, 2014 19:35
Show Gist options
  • Save caubry/8461824 to your computer and use it in GitHub Desktop.
Save caubry/8461824 to your computer and use it in GitHub Desktop.
var myObject = function(name){
this.name = name;
return this;
};
console.log(typeof myObject.prototype); // object
myObject.prototype.getName = function(){
return this.name;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment