Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save karthikselva/5406e5b7234413228247 to your computer and use it in GitHub Desktop.

Select an option

Save karthikselva/5406e5b7234413228247 to your computer and use it in GitHub Desktop.
var MyObject = ( function () {
var myPrivate1,myPrivate2;
var myPublicParts = {
public1: function () {
console.log(myPrivate1);
},
public2: function () {
console.log(myPrivate2);
};
return myPublicParts;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment