The name property represents the name given to a Reset button as specified from the NAME attribute of the HTML tag.
<html> <head> <title> Example of the reset name property</title> </head> <body> <form name="form1"> Enter Name: <input type="text" Name="name" Size=15> <br> Enter Phone: <input type="text" Name="phone" Size=10> <br><br> <input type="reset" name=resetbutton value=Reset onClick='alert("The reset button name is: " + ?document.form1.resetbutton.name)'> <br> <br> </form> </body> </html>