-
-
Save mandelbro/017656fd7ed1cf59b719876efed92e25 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;(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