Skip to content

Instantly share code, notes, and snippets.

@AlexP11223
Created November 4, 2018 13:52
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 AlexP11223/fe35e40fb01d2964b8f98b6ed9deb207 to your computer and use it in GitHub Desktop.
Save AlexP11223/fe35e40fb01d2964b8f98b6ed9deb207 to your computer and use it in GitHub Desktop.
var doOnce = function() {
var completed = false;
return function() {
if (!completed) {
console.log('hello');
completed = true;
}
};
}();
doOnce();
doOnce();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment