write the java script program to display your name if the name is divya
Answers
Answered by
1
Answer:
var customerName = prompt("Please enter your name", "<name goes here>");
if (customerName!= null) {
document.getElementById("welcome").innerHTML =
"Hello " + customerName + "! How are you today?";
}
Note-
just put the name there mension<name here>
Similar questions