Skip to content

Instantly share code, notes, and snippets.

@LoganBarnett
Created December 14, 2022 23:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LoganBarnett/77afedeb76a8e68b39a057186acb5931 to your computer and use it in GitHub Desktop.
Save LoganBarnett/77afedeb76a8e68b39a057186acb5931 to your computer and use it in GitHub Desktop.
const xs = []
for(var i = 0; i < 3; ++i) {
xs.push(() => console.log('i is', i))
}
xs.forEach(f => f())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment