
```javascript
class Developer {
constructor() {
this.name = "Zahid Shaikh";
this.role = "Frontend Developer";
this.location = "India, Maharashtra, Pune";
this.languages = ["JavaScript", "TypeScript", "Python"];
this.frameworks = ["React", "Next.js", "Angular", "Ionic"];
this.passion = "Creating pixel-perfect interfaces";
this.currentFocus = "Building scalable web applications";
this.funFact = "I can center a div... most of the time! 😄";
}
getCurrentWork() {
return "Building amazing user experiences";
}
}
const me = new Developer();
```