Hallo I'm Michael, computer science student 💻 and passionate about web development 💪.
- 🤔 I like to code with Spring and Vue. However I like to discover new tools 🔥
#Nuxt #Spring #Selenium #Docker #Rust #GraphQL
let yourCompany = ["your team"];
let me = "Michael";
let match = true;
const collaboration = (company, applicant, matching) =>{
try {
if(matching){
company.push(applicant);
return `An awesome collaboration is announced between ${company[0]} and ${company[1]} 🤩`;
}
throw ('no collaboration')
} catch (err){
return `Oh there is an error : ${err} \n Okay ! Let's wish a good continuation 🙂`;
}
}
collaboration(yourCompany, me, match)