- π₯ 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();