- 🔥 Passionate about coding, automation, and AI.
- 🚀 Experienced in Full-Stack Development.
- 🛠 Creating innovative open-source projects.
- 💡 Continuously learning new technologies.
class Developer {
constructor(name, role, skills, passion, experience) {
this.name = name;
this.role = role;
this.skills = skills;
this.passion = passion;
this.experience = experience;
}
introduce() {
console.log("\n🚀 Meet a Passionate Developer 🚀");
console.log(`👋 Hi, I'm ${this.name}!`);
console.log(`💻 Role: ${this.role}`);
console.log(`🛠️ Skills: ${this.skills.join(", ")}`);
console.log(`❤️ Passion: ${this.passion}`);
console.log(`📆 Experience: ${this.experience} years in the industry.`);
console.log("✨ Let's build something amazing together! ✨\n");
}
}
const huyKaiser = new Developer(
"HuyKaiser",
"Full-Stack Developer",
["JavaScript", "TypeScript", "React", "Node.js", "Go", "Rust", "Python", "C++", "Kotlin", "Swift", "AWS", "Azure", "Redis", "GraphQL", "PHP", "FastAPI", "Express.js"],
"Building cool stuff with code and automation.",
5
);
huyKaiser.introduce();
