Question: You've written the event listener shown below for a form button, but each time you click the button, the page reloads. Which statement would stop this from happening?

  1. `e.blockReload();`
  2. `button.preventDefault();`
  3. `button.blockReload();`
  4. `e.preventDefault();`

Answer: The correct answer of the above question is Option D:`e.preventDefault();`