sdf

sdf

sdf

```js+function myFunc() {+ this.myVar = 0;+ setTimeout(+ () => { // this 的值來自於它的外圍作用域,也就是 myFunc 函數+ this.myVar++;+ console.log(this.myVar) // 1+ },+ 0+ );+}```


Report Page