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?
<pre><code>button.addEventListener(
'click', function (e) {
button.className = 'clicked'; }, false,);</code></pre>