Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Last active March 7, 2018 20:18
Show Gist options
  • Save gskachkov/7651e00d5e2cb8bae110b997327f7e4d to your computer and use it in GitHub Desktop.
Save gskachkov/7651e00d5e2cb8bae110b997327f7e4d to your computer and use it in GitHub Desktop.
function init () {
"use strict";
var counter;
function inc() {
counter++;
return counter;
}
return inc;
}
var calc = init();
calc();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment