class Developer {
name: string = "Manesh Edirisinghe";
role: string = "UI/UX Designer | Full Stack Developer";
location: string = "Sri Lanka 🇱🇰";
languages: string[] = ["Java", "Python", "TypeScript", "JavaScript"];
frameworks: string[] = ["React", "Node.js", "Next.js"];
databases: string[] = ["MySQL", "MongoDB"];
currentlyLearning: string = "AI/ML & Web3 🤖";
hobbies: string[] = ["Coding", "Reading Tech Blogs", "Performing as an Artist"];
getLifeMotto(): string {
return "First, solve the problem. Then, write the code. ⚡";
}
}
const me = new Developer();
console.log(me.getLifeMotto());💭 "Any fool can write code that a computer can understand. Good programmers write code that humans can understand." - Martin Fowler
⭐️ If you find my work interesting, feel free to star my repositories! ⭐️
Made with ❤️ and lots of ☕










