Skip to content

Instantly share code, notes, and snippets.

@owenconti
Created February 20, 2017 23:23
Show Gist options
  • Save owenconti/9963033edab896d32da735fd1a14a321 to your computer and use it in GitHub Desktop.
Save owenconti/9963033edab896d32da735fd1a14a321 to your computer and use it in GitHub Desktop.
function a() {
var hello = "world";
function b() {
alert(hello);
}
b();
}
a(); // alerts 'world'
// b() is a closure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment