Uladzislau Askerka

Front-end developer

About

I work in the reilway as electromechanic now and combine work and study. I quickly assimilate information, quickly master the necessary tools. I love to learn new things and apply it in practice.

Code example

FizzBuzz is a task where the programmer is asked to print numbers from 1 to 100, but here’s the catch, multiple of three should print “Fizz” and similarly print “Buzz” for multiples of 5 and lastly print “FizzBuzz” for multiples of three and five.

for (var i = 1; i < 101; i++) {
                    if (i % 15 == 0) console.log("FizzBuzz");
                    else if (i % 3 == 0) console.log("Fizz");
                    else if (i % 5 == 0) console.log("Buzz");
                    else console.log(i);}
                

Experience

2019 - Present
Belarusian Railway
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis unde incidunt ut placeat repellat dicta. Nobis veniam asperiores ea quis?

Skills

  • HTML/CSS
  • JS basic
  • GIT
  • Figma