Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created September 17, 2015 16:35
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 chuck0523/07f7b08d798f71474ea4 to your computer and use it in GitHub Desktop.
Save chuck0523/07f7b08d798f71474ea4 to your computer and use it in GitHub Desktop.
var x = 5;
var func1 = function() {
var x = 9;
return x;
};
var func2 = func1();
console.log(x); // 5
console.log(func2); // 9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment