Skip to content

Instantly share code, notes, and snippets.

@Josema
Created April 29, 2015 07:30
Show Gist options
  • Save Josema/d0bf71982a2b663ba0f3 to your computer and use it in GitHub Desktop.
Save Josema/d0bf71982a2b663ba0f3 to your computer and use it in GitHub Desktop.
var bar, fun;
bar = 1;
fun = function() {
var bar = 2;
return bar * 2;
};
fun(); // 4
bar * 2; // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment