Skip to content

Instantly share code, notes, and snippets.

@camelcaseblog
Created June 30, 2019 20:11
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 camelcaseblog/a5dd21a2ad73091118d7aa47f409ab8b to your computer and use it in GitHub Desktop.
Save camelcaseblog/a5dd21a2ad73091118d7aa47f409ab8b to your computer and use it in GitHub Desktop.
function createPrintFunction(i) {
return function() { console.log(i); }
}
var functions = []
for (var i = 0; i < 10; i++){
functions.push(createPrintFunction(i))
}
functions.forEach(f => f())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment