interface ProfileData {
name: string;
age: number;
softSkills: string[];
hardSkills: string[];
technologies: string[];
interests: string[];
}
const myProfile: ProfileData = {
name: "Adriano Junior",
age: 26,
softSkills: ["Communication", "Adaptability", "Problem Solving", "Leadership", ...other],
hardSkills: [
"Web Development",
"Agile Methodologies",
"Software Testing",
"API Development",
"Database Management"
],
technologies: ["NextJs", "React", "TypeScript", "Node", ...others],
interests: ["Mobile Development", "Cybersecutiry", "Software Architecture"],
};
const displayProfile = (profile: ProfileData) => {
console.log(`Name: ${profile.name}`);
console.log(`Age: ${profile.age}`);
console.log(`Soft Skills: ${profile.softSkills.join(", ")}`);
console.log(`Hard Skills: ${profile.hardSkills.join(", ")}`);
console.log(`Technologies: ${profile.technologies.join(", ")}`);
console.log(`Interests: ${profile.interests.join(", ")}`);
};
displayProfile(myProfile);
Popular repositories Loading
-
-
-
-
Balle_BotLP
Balle_BotLP PublicLanding page developed following the instructions of RafaBallerini in your channel of YouTube
CSS
-
Animations
Animations PublicAnimations repository with two projects. One using vanilla javascript and another using react.
CSS
-
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.



