➤JR Front-end developer at Fractal Tecnologia
type AboutMeType = (Name: string, Skills: string[], EducationalBackground: string) => void
const AboutMe: AboutMeType = (Name, Skills, EducationalBackground) => {
console.log("Name:", Name)
console.log("Educational Background:", EducationalBackground)
console.log("Skills:", Skills.join(', '))
}
AboutMe(
'Gabriel Carlos',
[
'React',
'Typescript',
'Javascrip',
'Ruby on Rails',
'Flutter',
'Node',
'AWS',
'Docker',
'Terraform'
],
'Systems for Internet - UNIESP')