how to input string from alert in javascript code example
Example 1: 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 2: alert in js returb value or not
Alert in JS doesn't return anything -- it just Displays Message