input in js code example

Example 1: how to ask input in javascript

let name=prompt("What is your name?");
console.log("Hi "+name)

Example 2: input js

var answer = prompt("Ask your question here");

Example 3: javascript prompt

var person = prompt("Please enter your name", "Harry Potter");

if (person != null) {
  document.getElementById("demo").innerHTML =
  "Hello " + person + "! How are you today?";
}

Example 4: input in js

var answer = prompt("Question")

Example 5: what is the meaning of prompt in javascript

var answer = prompt('What is your name?','Joe Blogg');

Example 6: input in javascript

Input Text Object
The Input Text object represents an HTML <input> element with type="text".

Access an Input Text Object
You can access an <input> element with type="text" by using getElementById():

Example
var x = document.getElementById("myText");
Tip: You can also access <input type="text"> by searching through the elements collection of a form.

Create an Input Text Object
You can create an <input> element with type="text" by using the document.createElement() method:

Example
var x = document.createElement("INPUT");
x.setAttribute("type", "text");