981377660LMT / ts

ts学习
6 stars 1 forks source link

闭包捕获的是变量的引用,而不是变量的值。 #636

Open 981377660LMT opened 1 week ago

981377660LMT commented 1 week ago
let a = 1
setTimeout(() => {
  console.log(a)  // 2
}, 100)
a = 2