Skip to content

Instantly share code, notes, and snippets.

@dikshadhote
Last active June 7, 2022 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dikshadhote/2224f768b9649366540c368bf91a80bf to your computer and use it in GitHub Desktop.
Save dikshadhote/2224f768b9649366540c368bf91a80bf to your computer and use it in GitHub Desktop.
function outerFunc(){
var a=7;
function innerFunc(){
console.log(a)
}
a=100
return innerFunc;
}
var output= outerFunc();
console.log(output);
output();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment