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
let outer = "outer"; | |
function scoping(){ | |
let inner = "inner"; | |
console.log(outer) // you get access outer | |
} | |
console.log(inner) // sorry you can't access inner |