Skip to content

Instantly share code, notes, and snippets.

@rabmarjan
Last active August 25, 2018 17:20
Show Gist options
  • Save rabmarjan/713951efe64494a0ccf618b774fb116e to your computer and use it in GitHub Desktop.
Save rabmarjan/713951efe64494a0ccf618b774fb116e to your computer and use it in GitHub Desktop.
function foo() {
var a = 2;
function bar() {
console.log( a );
}
return bar;
}
var baz = foo();
baz(); // This is a closure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment