Last active
August 13, 2018 18:16
-
-
Save rupeshtiwari/bbdd9294bf0698795de9992e7110a54f to your computer and use it in GitHub Desktop.
What is closure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
In Javascript inner function has access to the outer functions variables and arguments is called as closure. | |
Inner function scope has 3 access. | |
1. Access to its local scope variables | |
2. Access to global scope variables | |
3. Access to its outer function variables and args. | |
*/ | |
/* Here is an example | |
Even though inner function printVersion has returned its value. | |
It has access to its outer function variable 'version' and argument 'logger' | |
*/ | |
function setLogger( logger ) { | |
var version = 23; | |
return function printVersion() { | |
var prefix = 'Logger Version: '; | |
logger(prefix+ version); | |
} | |
} | |
setLogger(console.debug)(); // print message Logger Version: 23 in debug mode | |
setLogger(console.info)(); // print message Logger Version: 23 in info mode. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment