how to make input field in javascript code example
Example 1: input in js
var answer = prompt("Question")
Example 2: javascript input field
<!DOCTYPE html>
<html>
<body>
<input> Here is your inputfield </input>
</body>
</html>
var answer = prompt("Question")
<!DOCTYPE html>
<html>
<body>
<input> Here is your inputfield </input>
</body>
</html>