Jovin Machenje - Tanzanian Web developer and tech creator with over 5 months of experience building production-grade applications across website development.
interface Developer {
name: string;
age: number;
experience: string;
focus: string[];
location: string;
}
const me: Developer = {
name: "Jovin Machenje",
age: 18,
experience: "5+ months",
focus: ["Web Development"],
location: "Tanzania",
};