Skip to content

Instantly share code, notes, and snippets.

@codeaholicguy
Created May 15, 2016 08:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeaholicguy/36a1de80e72343bcad8d819e499247b5 to your computer and use it in GitHub Desktop.
Save codeaholicguy/36a1de80e72343bcad8d819e499247b5 to your computer and use it in GitHub Desktop.
function test() {
console.log(a);
console.log(foo());
var a = 1;
function foo() {
return 2;
}
}
test();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment