Skip to content

Instantly share code, notes, and snippets.

@cesarkohl
Created January 13, 2020 14:55
Show Gist options
  • Select an option

  • Save cesarkohl/cda49a85c96e0c0f709544b9f860779e to your computer and use it in GitHub Desktop.

Select an option

Save cesarkohl/cda49a85c96e0c0f709544b9f860779e to your computer and use it in GitHub Desktop.
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