Skip to content

WTF Reactjs

HOA PHAN edited this page May 14, 2023 · 1 revision

Reactjs


  constructor(props) {
    super(props);
    // Missing line
  }

  handleClick() {...}
}

then

this.handleClick = this.handleClick.bind(this);

https://forum.freecodecamp.org/t/what-does-this-handleclick-this-handleclick-bind-this-exactly-do/377737/2

eye

Clone this wiki locally