Skip to content

Instantly share code, notes, and snippets.

@mandelbro
Last active August 31, 2016 17:46
Show Gist options
  • Save mandelbro/017656fd7ed1cf59b719876efed92e25 to your computer and use it in GitHub Desktop.
Save mandelbro/017656fd7ed1cf59b719876efed92e25 to your computer and use it in GitHub Desktop.
;(function () {
"use strict";
// code in here keeps the global scope clean!
var globalVar = "I'm a global variable!";
function privateFunction () {
return "I'm a private function!";
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment