📅  最后修改于: 2022-03-11 15:04:19.281000             🧑  作者: Mango
// make sure to use "let" and not "var" if you want to capture
// the value of the external variable in a closure
for (let i = 0; i < 5; i++) {
setTimeout(() => console.log(i), 0);
}