js how to clear input field code example
Example 1: how to make input field empty in javascript
Assuming the element you want to change has the id question, so you can do
document.getElementById("question").value = "";
Example 2: js clear text in input
<input type="text" value="A new value" onfocus="if(this.value=='A new value') this.value='';">