Фотография

Zakharova
Ekaterina

Frontend Developer

Адрес Телефон E-mail Githab
  • October avenue 139-142, Kirov, Russia

  • +79635535483

  • zakharovakat33@gmail.com

  • katyaza

Skills

  • HTML5 CSS3
  • JS (basic)
  • Git, Githab
  • VScode
  • Adobe Photoshop, Figma (basic)

languages

  • English

    Upper-intermediate

  • Russian

    Native

About me

In 2018, I graduated with honors from the university with a degree in economics and worked as economists for 4 years, my work was appreciated and I constantly grew up the career ladder.

Over time, I realized that my work is very routine and does not bring me pleasure, but there were moments that fascinated me, for example, I could develop conditions for automating and speeding up repetitive tasks. Taking a risk, I decided to leave a stable job and try myself in development, for half a year I have been taking various courses and studying documentation. At the moment.

I believe that I am close to my goal.

As far as my strengths is great desire and ability to learn, ability to work in a team. Accuracy in work and a sense of responsibility for the result.

Education

University

Vyatka State University, economist (bachelor), manager of projects(master)

Codeacademy (Html+CSS, JS)

The Modern JavaScript Tutorial

RS Schools «JavaScript/Front-end. Stage 0»

My project

Project

SakaAgensy(landing page)

Code example

                        
function isDivideBy(number, a, b) {
  if (number % a === 0 && number % b === 0){
  return true;
  }else{
  return false;
  }
}