Skip to content

Instantly share code, notes, and snippets.

@vivektikar25
Created February 24, 2019 04:45
Show Gist options
  • Save vivektikar25/61e6d3dd1bf7f28330f8b61eb2f7f752 to your computer and use it in GitHub Desktop.
Save vivektikar25/61e6d3dd1bf7f28330f8b61eb2f7f752 to your computer and use it in GitHub Desktop.
function outerFunction() {
var count = 10;
return function innerFunction() {
console.log(count);
};
}
var result = outerFunction();
console.dir(result);
result();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment