type User = {
name: string;
role: string;
focus: string[];
summary(): string;
};
const user: User = {
name: "Erfan Abouei",
role: "CEO @ Kara | 17",
focus: [
"Backend Architecture",
"Clean Code",
"System Design"
],
summary() {
return `${this.name} — ${this.role}\nFocus: ${this.focus.join(" • ")}`;
}
};
console.log(user.summary());
I started working with computers at an early age, which led me to pursue backend development. I focus on understanding systems, writing reliable code, and continuously improving—because in backend engineering, learning never stops.