5.Interactions
by John Kiran
HTML
<html>
<head>
<title>Interactions</title>
</head>
<body>
</body>
</html>
JavaScript
alert("Welcome "+prompt("Enter your name:",""));
let age=prompt("How old are you?","default");
alert(`You are ${age} years old!`);
let isBoss=confirm("Is your details are correct?");
if(isBoss==true) {
alert("Saved");
} else {
alert("Process cancelled");
}