Skip to content

Instantly share code, notes, and snippets.

@benisi
Created February 27, 2019 00:14
Show Gist options
  • Save benisi/6930408374812df15d91f840cc8b1b90 to your computer and use it in GitHub Desktop.
Save benisi/6930408374812df15d91f840cc8b1b90 to your computer and use it in GitHub Desktop.
Illustrating closure
let outer = "outer";
function scoping(){
let inner = "inner";
console.log(outer) // you get access outer
}
console.log(inner) // sorry you can't access inner
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment