Alexander Leonov

About me

I’ve been developing applications for the web using mostly PHP with poplar CMS (Drupal, 1C-Bitrix, Wordpress) since 2013.

Now I'm a fullstack javascript developer.

The main goal is starting my career as a Middle Front-End developer. I want to improve my JavaScript skills and to get the Frontend-job next year.

Experience

  • Nuber (from 02.2021)

    • Development, support and modification web applications on Vue.js, Nuxt and React;
    • Legacy code refactoring and debugging.
  • LLC "Itorum" (from 04.2020 to 12.2021)

    • Development, support and modification eSHop;
    • Legacy code refactoring and debugging;
    • Developed new modules for shop;
    • API integration for eCommerce.
  • LLC "Beehive" (from 07.2013 to 03.2020)

    • Development, support and modification websites and web applications;
    • Legacy code refactoring and debugging;
    • Developed new modules for shop;
    • API integration for eCommerce.

Courses

  • https://ru.hexlet.io/u/alleonov
  • https://learn.javascript.ru

Code example

const fizzBuzz = (begin, end) => {
  for (let i = begin; i <= end; i += 1) {
    const hasFizz = i % 3 === 0;
    const hasBuzz = i % 5 === 0;
    const fizzPart = hasFizz ? 'Fizz' : '';
    const buzzPart = hasBuzz ? 'Buzz' : '';
    console.log(`${fizzPart}${buzzPart}` || i);
  }
};

Portfolio