Olga Shuliak

Olga
Shuliak

Junior Frontend Developer

About me

Hello, I’m a person who is addicted to programming and design. I have experience in creating SPA using JS/TS, HTML/CSS. Now I’m improving my skills and expanding them, learning new technologies. In the future I see myself as a Full Stack Developer. I’m married, I have two kids. Ready to consider project work and full-time employment.

Education

Belarusian State Technological University
2004-2007
Publishing (unfinished higher)
2007-2013
Accounting

Experience

2020-2021 Freelance
2008-2017 Calculation Specialist
Maintaining a database of personal accounts, monitoring the timely updating of the information contained. Accrual of housing and communal services in accordance with the legislation. Preparation of the established reporting within the stipulated time frame. Clarification of issues related to the work of the settlement and reference center

Code examples

                
const deepCount = (arr = []) => {
  return arr
  .reduce((acc, val) => {
    return acc + (Array.isArray(val) ? deepCount(val) : 0);
  }, arr.length);
};
            

Works