Skip to content

Instantly share code, notes, and snippets.

@tingwei628
Created April 20, 2024 08:12
Show Gist options
  • Save tingwei628/dd9e5e421df9b36a1f1e568ceb424d77 to your computer and use it in GitHub Desktop.
Save tingwei628/dd9e5e421df9b36a1f1e568ceb424d77 to your computer and use it in GitHub Desktop.
IIFE
var arr = [];
for (var i = 1; i <4 ; i++) {
arr.push(function(j) {
return function() {console.log(j);}
}(i));
}
arr[0]();
arr[1]();
arr[2]();
// ====================
var arr = [];
for (var i = 1; i <4 ; i++) {
arr.push(function(j) {
console.log(j);
}(i));
}
arr[0];
arr[1];
arr[2];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment