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
// Hello Admin: Make a array of five or more usernames, including the name 'admin'. Imagine you are writing code that will print a greeting to each user after they log in to a website. Loop through the array, and print a greeting to each user:
// • If the username is 'admin', print a special greeting, such as Hello admin, would you like to see a status report?
// • Otherwise, print a generic greeting, such as Hello Eric, thank you for logging in again.
let usernames:string[]=['Saba','Rubab','Admin','Arham','Misbah']
for(let user of usernames){
if(user ==="Admin"){
console.log("Hello Admin, would you like to see a status report?")
}
else{
console.log(`Hello ${user}, Thank you for logging in again!.`)