-
π± Iβm currently learning React Native
-
π¬ Ask me about React,Nodejs,Express,MongoDB,Android
-
π« How to reach me [email protected]
function attractEveryone() {
const userInput = prompt("Enter your target audience: ");
const lowerCaseInput = userInput.toLowerCase();
switch (lowerCaseInput) {
case 'customers':
alert("π Discover amazing solutions tailored for you! π");
break;
case 'recruiters':
alert("π Unlock talent that transforms visions into reality! π");
break;
case 'company_owners':
alert("πΌ Elevate your business with cutting-edge innovation! πΌ");
break;
case 'students':
alert("π Empowering the next generation of tech leaders! π");
break;
case 'tech_enthusiasts':
alert("β‘οΈ Dive into the world of endless possibilities! β‘οΈ");
break;
default:
alert("β Invalid audience. Please enter one of the following: customers, recruiters, company_owners, students, tech_enthusiasts");
// Prompt the user again for a valid input
attractEveryone();
return; // Exit the function to avoid displaying the default message again
}
}
// Start the process by calling the function
attractEveryone();
// - Ally Diah