Created
July 22, 2018 18:32
-
-
Save EvanCarroll/e92367faa7d93e7a73574ffae509974d to your computer and use it in GitHub Desktop.
Closures
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
function f() { | |
let counter = 0; | |
return function () { | |
counter = counter + 1; | |
return function () { return counter } | |
} | |
} | |
Explain what the above code does and how we can use it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment