Skip to content

Instantly share code, notes, and snippets.

@gkatsev
Created May 27, 2013 22:00
Show Gist options
  • Save gkatsev/5659294 to your computer and use it in GitHub Desktop.
Save gkatsev/5659294 to your computer and use it in GitHub Desktop.
var Ctor = (function(window, undefined) {
var private = 5;
var Ctor = function() {
// ...
}
Ctro.protoype.foo = function() {
return private;
}
return Ctor;
})(window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment