Created
March 1, 2014 01:18
-
-
Save dlion/9283339 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 myNamespace = (function () { | |
var myPrivateVar, myPrivateMethod; | |
//Private counter variable | |
myPrivateVar = 0; | |
//Private function which logs any arguments | |
myPrivateMethod = function( foo ) { | |
console.log( foo ); | |
}; | |
return { | |
//Public variable | |
myPublicVar: "foo", | |
//Public function utilizing privates | |
myPublicFunction: function( bar ) { | |
//Increment private counter | |
myPrivateVar++; | |
//call our private methos using bar | |
myPrivateMethod( bar ); | |
} | |
}; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment