how to reset input field in javascript code example
Example 1: how to reset input field in javascript
document.querySelector('#counter').value = '';
Example 2: js clear text in input
<input type="text" value="A new value" onfocus="if(this.value=='A new value') this.value='';">