SO-72937833

by David Thomas

JavaScript

window.addEventListener('DOMContentLoaded', (e)=>{
	let name = prompt("Hi, what's your name?");
  if (name == null || name == "") {
    txt = "No name provided";
  } else {
    txt = `Hello, ${name}! How are you today?`;
  }
  alert(txt);
});