my-photo

Margarita Fomkina

Junior front-end developer

Contacts

About me

In 2022, my life has changed a lot. I have moved to another country and decided to try myself in a new area. My main strength is that I really love to study (in the past I was a historian, researcher, PhD candidate). I like those areas of knowledge in which you can do this indefinitely. I'm going to learn Web-development in depth, and this СV is my first touch to the IT world.

Education

St. Petersburg University

Skills

  • Web-development: HTML5, CSS3, JS
  • Version control: GIT, Github

Courses

Languages

  • Russian (native)
  • English (В1)
  • French (В2);

Code example


function launchAll(launchMissile) {

    function func(i) {
        setTimeout(() => launchMissile(i), i*1000)
    };

    for(var i = 0; i < 5; i++) {
         func(i);
    };

};