Skip to content

Instantly share code, notes, and snippets.

@dcneiner
Created July 12, 2010 16:28
Show Gist options
  • Save dcneiner/472674 to your computer and use it in GitHub Desktop.
Save dcneiner/472674 to your computer and use it in GitHub Desktop.
// 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