diff --git a/content/docs/faq-functions.md b/content/docs/faq-functions.md index f03b2ba7..18fdfe11 100644 --- a/content/docs/faq-functions.md +++ b/content/docs/faq-functions.md @@ -152,7 +152,6 @@ const A = 65 // ASCII character code class Alphabet extends React.Component { constructor(props) { super(props); - this.handleClick = this.handleClick.bind(this); this.state = { justClicked: null, letters: Array.from({length: 26}, (_, i) => String.fromCharCode(A + i))