I am a software developer who has discovered the joy of problem-solving through code.
import { Human } from "earth";
class Me extends Human {
constructor() {
super();
this.name = "👨💻 Issam Mezgueldi";
this.age = new Date().getFullYear() - 2003;
this.homeTown = "🌍 Tetouan, Morocco";
this.skills = ["🧠 Problem Solving", "🤔 Logical Thinking", "📚 Fast Learning"];
this.interests = ["♟️ Chess", "⚽ Football", "🎵 Music", "🎬 Movies"];
this.socialMedia = {
instagram: "instagram.com/issam.mezgueldi",
linkedin: "linkedin.com/in/mez901",
github: "github.com/MEZ901",
};
}
}