Skip to content

Instantly share code, notes, and snippets.

@josescasanova
Created February 7, 2016 01:37
Show Gist options
  • Save josescasanova/2c5263124779ddddb93f to your computer and use it in GitHub Desktop.
Save josescasanova/2c5263124779ddddb93f to your computer and use it in GitHub Desktop.
function foo() {
function a() {} // local 'a' is a function
a = 12; // local 'a' is now a number (12)
return a; // return the local 'a' (12)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment