entrada JS
var answer = prompt("Ask your question here");
TheProgrammer
var answer = prompt("Ask your question here");
<label for="name">Name:</label>
<input type="text" id="name"><br><br>
const x = prompt();
//HTML Textbox w/Getting Javascript Input:
<script>
function getTextBox(){
var k = document.getElemntById('myTextBox').value
alert(k)
}
</script>
<input type="text" id="myTextBox">
<button onclick="getTextBox()">Get Text Input</button>