Skip to content

Instantly share code, notes, and snippets.

@SecretDeveloper
Last active August 29, 2015 14:04
Show Gist options
  • Save SecretDeveloper/572cb8995e5abb7e7779 to your computer and use it in GitHub Desktop.
Save SecretDeveloper/572cb8995e5abb7e7779 to your computer and use it in GitHub Desktop.
Widget code isolation
var myVariable = "Some external value;"
(function(root){
var myVariable = "Some internal value;"
console.log(myVariable); // will be "Some internal value"
})(window);
console.log(myVariable); // will still be "Some external value"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment