Skip to content

Instantly share code, notes, and snippets.

@akumbhani66
Created July 29, 2020 08:09
Show Gist options
  • Save akumbhani66/200c9e103ffa9f1b00cfc8975e61be6d to your computer and use it in GitHub Desktop.
Save akumbhani66/200c9e103ffa9f1b00cfc8975e61be6d to your computer and use it in GitHub Desktop.
Simple closure example
function getCounter() {
let counter = 0;
return function () {
counter = 1;
return function () {
return counter = 2;
}
}
}
let count = getCounter();
let count2 = count();
console.log(count2());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment