class Developer {
name: string = "Vivek Sharma";
location: string = "India ๐ฎ๐ณ";
title: string = "Full Stack Developer";
expertise: {
frontend: string[] = ["React", "Next.js", "Vue.js"];
backend: string[] = ["Node.js", "Express", "FastAPI"];
mobile: string[] = ["React Native", "Android Studio"];
cloud: string[] = ["AWS", "Firebase", "Vercel"];
databases: string[] = ["MongoDB", "PostgreSQL", "Redis"];
};
hobbies: string[] = ["Gaming ๐ฎ", "Photography ๐ธ", "Music ๐ต"];
funFact: string = "I debug code faster than I solve Rubik's cube! ๐งฉ";
contactMe(): string {
return "viveksharma.vs0615@gmail.com";
}
getPortfolio(): string {
return "https://vivek-sharma-three.vercel.app/";
}
}
const vivek = new Developer();
console.log("Welcome to my GitHub! ๐");
