function doImportantStuff() { var someVariable = "important stuff"; function reportImportantStuff() { console.log(someVariable) // "important stuff" } reportImportantStuff(); } doImportantStuff();