You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* take the users name and age as input using prompt then return back the following statement to user as an alert run this in consolore or with .html*/
let name = prompt("enter the name");
let age = prompt("enter the age");
alert(`Hi, ${name} welcome and your age is ${age}`);