bind(), call(), and apply()

Why is bind() commonly used in class constructors?
class Component {
  constructor() {
    this.handleClick = this.handleClick.bind(this);
  }
  
  handleClick() {
    console.log(this.props);
  }
}
Next Question (7/20)