Last active
May 28, 2018 23:21
-
-
Save paxelpixel/13a043999a63f83afccd316e7d8a10e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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