type Developer = {
name: string;
role: string;
expertise: string[];
aboutMe: string;
};
const profile: Developer = {
name: 'Abdellah',
role: 'Software Developer',
expertise: ['TypeScript', 'JavaScript', 'React'],
aboutMe: 'I develop efficient web solutions for a seamless user experience',
};
console.log(`Name: ${profile.name}`);
console.log(`Role: ${profile.role}`);
console.log(`About Me: ${profile.aboutMe}`);
console.log('Expertise:');
profile.expertise.forEach((skill) => console.log(` - ${skill}`));
π³
student at 1337
Hi π These are some of the things I've made and done π, other cool things are on their way to bring some joy to this world π
- Marrakech, Morocco
- https://abdellah.me
Highlights
- Pro
Popular repositories Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.