Created
December 14, 2022 23:32
-
-
Save LoganBarnett/77afedeb76a8e68b39a057186acb5931 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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