Skip to content

Instantly share code, notes, and snippets.

@haingdc
Created January 30, 2018 10:14
Show Gist options
  • Save haingdc/f69437735850c1ff3b73cd691d10a5c6 to your computer and use it in GitHub Desktop.
Save haingdc/f69437735850c1ff3b73cd691d10a5c6 to your computer and use it in GitHub Desktop.
close affect
var result = [];
for (var year = 0; year < 5; year++) {
result.push(function () { return year }); // (1)
}
console.log(result[1]()); // 5 (không phải 1)
console.log(result[3]()); // 5 (không phải 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment