Skip to content

Instantly share code, notes, and snippets.

@reynir
Created June 3, 2015 13:42
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 reynir/fa9821dcd1108f1cc47b to your computer and use it in GitHub Desktop.
Save reynir/fa9821dcd1108f1cc47b to your computer and use it in GitHub Desktop.
let cbs = []
for (let i = 0; i < 5; i++) {
cbs.push(function () { console.log(i) })
}
cbs.forEach(function (f) { f() }) // prints "5" five times
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment