The type property of the HTMLButtonElement interface is a string that indicates the behavior type of the <button> element.
It reflects the type attribute of the <button> element.
A string representing the type.
Its possible values are listed in the attribute's button types section.
<button id="button" type="reset">type</button>const buttonElement = document.querySelector("#button");
console.log(buttonElement.type); // "reset"HTMLTextAreaElement.type propertyHTMLInputElement.type property