-
π± Currently Learning: Java, Spring Boot, React & Python
-
π οΈ All of my projects are available at https://github.com/ApsaraWitharana?tab=following
-
π¨βπ» Passionate About: Full-Stack Development, Problem-Solving & Open-Source
-
π Exploring: Web Development, Cloud Technologies & AI
-
π€ Always open to collaboration & learning new technologies!
-
π IJSE - Institute of Software Engineering Student GDSE-68
-
π« How to reach me asachini095@gmail.com
let name = "Sachini Apsara";
let role = "Software Engineer";
let skills = ["Problem-Solving", "UI Design", "Coding"];
let strengths = ["Innovative Ideas", "Collaborative Team Player"];
let exploring = ["Web Development", "Cloud Technologies", "AI"];
let education = "IJSE - Institute of Software Engineering Student GDSE-68";
let collaborationMessage = "Always open to collaboration & learning new technologies!";
function introduce() {
console.log(`Hi, I'm ${name}, a ${role}.`);
console.log(`My core skills include: ${skills.join(", ")}.`);
console.log(`My strengths: ${strengths.join(", ")}.`);
console.log(`Exploring: ${exploring.join(", ")}.`);
console.log(`Education: ${education}.`);
console.log(collaborationMessage);
}
introduce();