how to get 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: Javascript get text input value
var inputValue = document.getElementById("myTextInputID").value;
Example 3: input in js
var answer = prompt("Question")
Example 4: how to ask input in javascript
Copyvar name = window.prompt("Enter your name: ");
alert("Your name is " + name);