Skip to content

Instantly share code, notes, and snippets.

@jhonalino
Last active May 28, 2018 23:21
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 jhonalino/13a043999a63f83afccd316e7d8a10e3 to your computer and use it in GitHub Desktop.
Save jhonalino/13a043999a63f83afccd316e7d8a10e3 to your computer and use it in GitHub Desktop.
function doImportantStuff() {
var someVariable = "important stuff";
function reportImportantStuff() {
console.log(someVariable) // "important stuff"
}
reportImportantStuff();
}
doImportantStuff();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment