۰ محمد سجاد موکل
پاسخ تمرین:
جامعه جاوا اسکریپت ایجاد شده در ۲۹ اردیبهشت ۱۴۰۰
var user = prompt('Enter Username:');
if (user==='Admin') {
    var password = prompt('Enter Password:');
    if (password==='TheMaster') {
        alert('WELLCOME!!');
    } else {
        alert('Wrong Password!'); 
    }
} else {
    alert('I Dont Know You!'); 
}