Created
December 13, 2016 11:18
-
-
Save aherve/f0063db110ea66f2411d02eed878eda0 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 Greeters = [] | |
| for (var i = 0 ; i < 10 ; i++) { | |
| Greeters.push(function () { return console.log(i) }) | |
| } | |
| Greeters[0]() // 10 | |
| Greeters[1]() // 10 | |
| Greeters[2]() // 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment