📅  最后修改于: 2022-03-11 15:02:37.034000             🧑  作者: Mango
var person = prompt("Please enter your name", "Harry Potter");
if (person == null || person == "") {
txt = "User cancelled the prompt.";
} else {
txt = "Hello " + person + "! How are you today?";
}