Skip to content

Instantly share code, notes, and snippets.

@EvanCarroll
Created July 22, 2018 18:32
Show Gist options
  • Save EvanCarroll/e92367faa7d93e7a73574ffae509974d to your computer and use it in GitHub Desktop.
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