class MujtabaChandio {
constructor() {
this.name = "Mujtaba Chandio";
this.location = "Pakistan π΅π°";
this.role = "Full Stack Developer";
this.passion = ["IoT", "AI", "Web3", "Anime"];
this.currentFocus = "Building the future, one line at a time";
}
getCurrentlyLearning() {
return ["TypeScript", "React.js", "Node.js", "IoT Protocols"];
}
getLifePhilosophy() {
return "Code is poetry, and I'm writing the future! π";
}
}
const mujtaba = new MujtabaChandio();
|
|




