Created
January 13, 2020 14:55
-
-
Save cesarkohl/cda49a85c96e0c0f709544b9f860779e 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 arrayVar = []; | |
| for (var i = 1; i <5; i ++) { | |
| arrayVar.push (function () { | |
| console.log (i); | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment