Skip to content

Instantly share code, notes, and snippets.

@freynaud
Created February 22, 2013 16:06
Show Gist options
  • Save freynaud/5014474 to your computer and use it in GitHub Desktop.
Save freynaud/5014474 to your computer and use it in GitHub Desktop.
(function() {
var CONST = 1;
function GenericClass() {
}
var prototype = GenericClass.prototype;
GenericClass.staticFoo = function() {
};
prototype.foo = function() {
};
GenericClass = GenericClass;
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment