js input text method code example
Example 1: input js
var answer = prompt("Ask your question here");
Example 2: how to collect input textbox in html
<label for="name">Name:</label>
<input type="text" id="name"><br><br>
var answer = prompt("Ask your question here");
<label for="name">Name:</label>
<input type="text" id="name"><br><br>