In HTML the default type of button is not button
The default type of <button> is "submit" which is why a <button> in a <form> submits the form when clicked. Simply doing <button type="button"> removes this behaviour without the need for JavaScript. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button