Skip to content

Instantly share code, notes, and snippets.

@CubiZm
Last active June 8, 2017 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CubiZm/63d56548271aca52d5e222614efc2584 to your computer and use it in GitHub Desktop.
Save CubiZm/63d56548271aca52d5e222614efc2584 to your computer and use it in GitHub Desktop.
function numberGenerator() {
// Локальная «свободная» переменная, которая доступна только в замыкании
var num = 1;
function checkNumber() {
console.log(num);
}
num++;
return checkNumber;
}
var number = numberGenerator();
number(); // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment