Skip to content

Instantly share code, notes, and snippets.

@iamsingularity
Last active June 6, 2018 18:11
Show Gist options
  • Save iamsingularity/083baadb6025101d3cc563f5ae142734 to your computer and use it in GitHub Desktop.
Save iamsingularity/083baadb6025101d3cc563f5ae142734 to your computer and use it in GitHub Desktop.
var someCoolModule = (function() {
var privateVariable = 12345;
return { doSomething: function() { alert( privateVariable );
}, doSomethingElse: function() {
// ...
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment