|
class Developer {
constructor() {
this.name = "Praveen Somasundaram";
this.location = "Chennai, Tamil Nadu 🇮🇳";
this.college = "Rajalakshmi Engineering College";
this.learning = "DSA in Java & Cloud Computing ☁️";
this.goal = "Build projects that solve real-world problems 🌍";
}
work() {
console.log("💻 Coding, Learning, and Creating every day!");
}
contact() {
return {
email: "[email protected]",
linkedin: "linkedin.com/in/praveen-somasundaram2005",
portfolio: "Coming Soon 🚀",
};
}
}
const praveen = new Developer();
praveen.work();
console.log("🌟 Welcome to my world of code! 🌟");

















