We followed the same format for work, educational experience, and skills.
Note: For the bullet points in the worj and educational experiences we organized them as arrays within the object.
workExperiences: [{ emoji: "π",
jobTitle: "Operations Manager, R&D",
institution: "Burger King Corporate",
dates: "2019 - Present", // end with "present" for your current job
details: [
"Worked with franchisees and above restaurant leaders on execution of market test products",
"Assess restaurant complexity and develop strategies for restaurant simplification",
"Collaborate cross-functionally with different departments in order to accomplish project"
]},
We linked all of this arrays into the HTML to be shown in the DOM using the following commands:
`;
**Guest Speaker: Pati**
Pati explained us what is the type of work we would do as an APM. It gave me a very good understanding of the relationship I would have between the brands and the Franchisees. Also, how to adapt the Guests needs and transform it into functions within an app or software.
Resume data upload using JS form HTML and CSS
const data = { name: 'Alexis Matheus', mainEmoji:{ character: 'π', ariaLabel: 'wave', },
We followed the same format for work, educational experience, and skills. Note: For the bullet points in the worj and educational experiences we organized them as arrays within the object.
workExperiences: [{ emoji: "π", jobTitle: "Operations Manager, R&D", institution: "Burger King Corporate", dates: "2019 - Present", // end with "present" for your current job details: [ "Worked with franchisees and above restaurant leaders on execution of market test products", "Assess restaurant complexity and develop strategies for restaurant simplification", "Collaborate cross-functionally with different departments in order to accomplish project" ]},
const workExperienceContainer = document.querySelector('#work-experience'); const eachWorkExperienceHTML = data.workExperiences.map(renderWorkExperience); const allWorkExperiencesHTML = eachWorkExperienceHTML.join(''); workExperienceContainer.innerHTML = allWorkExperiencesHTML;
const renderEducationalExperience = educationalExperience => `
${educationalExperience.details .map(detail => `- ${detail}
`)
.join('')}