Skip to content

Instantly share code, notes, and snippets.

@EvanCarroll
Created July 22, 2018 18:32
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save EvanCarroll/e92367faa7d93e7a73574ffae509974d to your computer and use it in GitHub Desktop.
Closures
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