Skip to content

Instantly share code, notes, and snippets.

@kzar
Created October 26, 2014 18:14
Show Gist options
  • Select an option

  • Save kzar/8b17b50b235e818d2826 to your computer and use it in GitHub Desktop.

Select an option

Save kzar/8b17b50b235e818d2826 to your computer and use it in GitHub Desktop.
JS closure example
var counter = (function () {
var i = 0;
return {
view: function () { return i; },
next: function () { i += 1; }
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment