react-quick-tutorial icon indicating copy to clipboard operation
react-quick-tutorial copied to clipboard

Level 8筆誤

Open cakeant opened this issue 7 years ago • 0 comments

在Level 8的4. [ES6] 箭頭函數 (arrow function)區段

// Error: ES6 的匿名函數不會自動綁定 this,因此取不到 this.text
  setInterval(function() {
    console.log(this.text);
  }, 1000);

應為ES5, 不是ES6

cakeant avatar Nov 08 '18 07:11 cakeant