type User = {
name: string;
role: string;
skills: string[];
summary(): string;
};
const user: User = {
name: "Erfan Abouei",
role: "Backend Developer",
skills: ["Node.js", "TypeScript", "Express", "NestJS", "PostgreSQL", "Redis", "..."],
summary() {
return `${this.name} — ${this.role}\nSkills: ${this.skills.join(", ")}`;
}
};
console.log(user.summary());
-
Kara
- Yazd
- https://karaflow.com
- ErFaN_AbOuEI
Pinned Loading
-
Tarkhineh_Vue
Tarkhineh_Vue PublicA fully responsive and modern restaurant website template built with Vue.js, featuring elegant menu displays, reservation forms, customer testimonials, and smooth navigation for an exceptional user…
Vue 1
-
Git_Commit_Generator
Git_Commit_Generator PublicThis script automatically creates random Git commits for every day from a custom start date up to today. Great for filling your GitHub contribution graph for fun or testing!
-
Miora_Ecommerce
Miora_Ecommerce PublicMiora is an e-commerce backend built with Express, TypeScript, and Sequelize. It provides APIs for managing users, products, and orders with clean architecture and scalable modular design.
TypeScript 2
-
Personal_Website
Personal_Website PublicThis repository contains the source code and assets for my personal website. It serves as a portfolio to showcase my skills, projects, and professional experiences. The website is built using moder…
TypeScript 1
If the problem persists, check the GitHub status page or contact support.