Skip to content

Instantly share code, notes, and snippets.

@pragmaticobjects
Created September 8, 2011 12:38
Show Gist options
  • Select an option

  • Save pragmaticobjects/1203294 to your computer and use it in GitHub Desktop.

Select an option

Save pragmaticobjects/1203294 to your computer and use it in GitHub Desktop.
A second simple web page
<script>
var globalVar = "Hello";
(function() {
var localVar = "World";
alert(globalVar + " " + localVar);
})();
</script>
<div>Hello World</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment