Created
July 12, 2010 16:28
-
-
Save dcneiner/472674 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
// Private Scope | |
(function ($) { | |
var variable = "Hello"; | |
}(jQuery)); | |
alert(typeof variable); // undefined | |
// Private Scope, Public Variable | |
var variable = (function ($){ | |
var first = "Hel", second = "lo"; | |
return first + second; | |
}(jQuery)); | |
alert(variable); // "Hello" | |
alert(typeof first); // Undefined | |
alert(typeof second); // Undefined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment