Question: What is the difference between the click behaviors of these two buttons (assuming that this.handleClick is bound correctly)?

  1. Button A will not have access to the event object on click of the button.
  2. Button B will not fire the handler this.handleClick successfully.
  3. Button A will not fire the handler this.handleClick successfully.
  4. There is no difference.

Answer: The correct answer of the above question is Option D:There is no difference.