Skip to content

Instantly share code, notes, and snippets.

@cdaz5
Created September 15, 2017 14:39
Show Gist options
  • Select an option

  • Save cdaz5/35caa5c9c9d1fcaa9c3348625a75a805 to your computer and use it in GitHub Desktop.

Select an option

Save cdaz5/35caa5c9c9d1fcaa9c3348625a75a805 to your computer and use it in GitHub Desktop.
function test() {
let x = 5;
function closure() {
console.log( x );
}
return closure;
}
let checkMeOut = test();
checkMeOut() // 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment