Skip to content

Instantly share code, notes, and snippets.

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