Created
February 26, 2010 21:41
-
-
Save bcherry/316192 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var module = (function () { | |
var my = {}, | |
privateStaticModuleVariable = "something"; | |
my.publicStaticObjectConstructor = function () { | |
var that = {}, | |
privateInstanceVariable = "something"; | |
that.publicInstanceVariable = "something"; | |
function privateInstanceFunction() {} | |
that.publicInstanceFunction = function () {}; | |
return that; | |
}; | |
my.publicStaticModuleVariable = "something"; | |
function privateStaticModuleFunction() {} | |
return my; | |
}()); | |
var myobject = module.publicStaticObjectConstructor(); | |
var myobject2 = module.publicStaticObjectContructor(); | |
myObject.publicInstanceFunction(); | |
// etc. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment