|
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: "praveensomasundaram2005@gmail.com",
linkedin: "linkedin.com/in/praveen-somasundaram2005",
portfolio: "Coming Soon ๐",
};
}
}
const praveen = new Developer();
praveen.work();
console.log("๐ Welcome to my world of code! ๐");

















