Skip to content

Instantly share code, notes, and snippets.

// The module pattern
var sampleModule = (function() {
var privateSomething = "priv";
var publicSomethng = "public";
var changePrivateVariable = function() {
privateSomething = "priv changed";
}