Skip to content

Instantly share code, notes, and snippets.

@jhonalino
Last active May 29, 2018 04:44
Show Gist options
  • Save jhonalino/cc4ac8173b171db4161027b80a44489b to your computer and use it in GitHub Desktop.
Save jhonalino/cc4ac8173b171db4161027b80a44489b to your computer and use it in GitHub Desktop.
function doImportantStuff() {
var someVariable = "important stuff";
console.log(someVariable); // "important stuff"
console.log(anotherVariable); // oops can't access that
}
function anotherImportantStuff() {
var anotherVariable = "not so important";
}
doImportantStuff();
anotherImportantStuff();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment