Skip to content

Instantly share code, notes, and snippets.

@aisuii
Created February 14, 2011 01:37
Show Gist options
  • Save aisuii/825369 to your computer and use it in GitHub Desktop.
Save aisuii/825369 to your computer and use it in GitHub Desktop.
var NameSpace = (function(){
var private_method = function(){
alert("private");
}
var public_method = function(){
private_method();
}
return {
public_method: public_method
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment