Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save cesarkohl/77d85db7877f51552562086c548565c5 to your computer and use it in GitHub Desktop.
const arrayVar = [];
for (var i = 0; i <5; i ++) {
 arrayVar.push (function () {
 console.log (i);
 });
}
i = 10; // assigning a new value
arrayVar.forEach (function) {
 occupation(); // 10 10 10 10 10
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment