Skip to content

Instantly share code, notes, and snippets.

@carlbarrdahl
Created February 7, 2014 13:36
Show Gist options
  • Save carlbarrdahl/8862734 to your computer and use it in GitHub Desktop.
Save carlbarrdahl/8862734 to your computer and use it in GitHub Desktop.
var Person = function(name) {
this.name = name;
}
Person.prototype = (function() {
var aPrivateMethod = function() {};
return {
constructor: Person,
aPublicMethod: function() {};
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment