js getting input from user and using it code example
Example 1: js get input from user
var name = prompt("Please enter your name", "Harry Potter");
Example 2: how to get a user input in js
Copyvar name = window.prompt("Enter your name: ");
alert("Your name is " + name);
Example 3: Accessing user input through js
var x = document.getElementById("myText").value;