Sergey Starkov

Junior Front-end Developer

About me

My aim is an interesting job with a lot of challenging tasks and the opportunity to constantly develop and learn new things. I am ready to work hard and very persistent in the face of difficulties. The lack of working experience in my case can be an advantage: I already have a lot of knowledge (in some areas), but at the same time it is easy for me to be onboarded in any workflow in a new company.

Starkov Sergey photo

Contacts

Education

Saint-Petersburg State Chemical and Pharmaceutical University (2016); work experience in pharmaceutical industry — 10 years

2011 — 2016, Saint-Petersburg

Knowledge

Skills

Experience

The Rolling Scopes School — JS/FE Pre-School (JavaScript): certificate
2021

HTML Academy — interactive online course Professional HTML & CSS, levels 1 and level 2
2020 — 2021

Code examples

            
    const explode = (string) = > {
      const array = [...string].map((num) = > +num);
      let newString = '';
      for (let number of array) {
        for (let i = 0; i < number; i++) {
          newString+= number;
        }
      }
      return newString;
    };