Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dolzenko/219936 to your computer and use it in GitHub Desktop.
Save dolzenko/219936 to your computer and use it in GitHub Desktop.
Dead Simple JavaScript Class Pattern (jQuery compatible)
var MyClass = function() {
var self = this;
$.extend(self, {
initialize: function(constructor_arg1, constructor_arg2) {
self.method();
},
method: function() {
}
// other methods below...
});
self.initialize.apply(self, arguments);
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment