Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created February 23, 2015 11:13
Show Gist options
  • Save debugmodedotnet/2181aad03265d2a1f306 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/2181aad03265d2a1f306 to your computer and use it in GitHub Desktop.
Code snippet showing JavaScript function scoping
(function Foo()
{
myVar = "doo";
console.log(myVar);
var myVar = "bar";
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment