I'm a Full Stack Developer who loves building web applications and exploring new technologies.
- π Currently working on Innovative Web Projects
- π± Learning DSA & Web3/Blockchain
- π― Looking to collaborate on Open Source Projects
- π¬ Ask me about Web Development, DSA, or Tech Career
- β‘ Fun fact: I can debug code faster with coffee β
- π― Goal: Contribute more to Open Source
- π« Reach me at: sumitsagar2612@gmail.com
- πΌ Portfolio: Dive here!
class FullStackDeveloper {
constructor() {
this.name = 'Sumit Sagar';
this.role = 'Full Stack Developer';
this.languages = ['JavaScript', 'Python', 'Java', 'C++'];
this.challenges = this.coffeeCups = 0;
}
solveChallenge(challenge) {
while (!challenge.isSolved) this.drinkCoffee();
return 'β¨ Challenge done!';
}
drinkCoffee() {
return `β (${++this.coffeeCups})`;
}
async learnNewTechnology(tech) {
await Promise.all([this.research(tech), this.practice(tech), this.build(tech)]);
return `π Skilled in ${tech}`;
}
getLifeBalance() {
return { code: 'π»', learn: 'π', grow: 'π±', repeat: 'π' };
}
}
console.log('π Ready to create amazing things!');