Skip to content

Instantly share code, notes, and snippets.

@WPDC
Created December 13, 2015 22:22
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 WPDC/adab83cd790e3a44d9cc to your computer and use it in GitHub Desktop.
Save WPDC/adab83cd790e3a44d9cc to your computer and use it in GitHub Desktop.
CS0110 3.9 - Scoping
pageName = 'FAQ'
isPageLoaded = displayPage( pageName )
// pageName in the function is not the same
// as the pageName on line 2.
function displayPage( pageName ) {
isPageLoaded = false
...
return isPageLoaded
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment