Volha Kuratnik

My photo

Languages

I completed my master's degree in English in Norway.

Hobbies:

Career Goal

To finish RS school and obtain a responsible and challenging Front End Developer’s position

Education and courses

  • Bachelor Degree in Mathematics, Minsk, Belarus
  • Master Degree in Logistics, Molde, Norway
  • Basic Front-End Developer Course, udemy.com

Experience

I've just started learning front end development. I have realized one commercial project on my own. This is my first webpage: hub-trans.com

Code example

I'm starting to learn JavaScript. Here is an implementation of a function that multiplies numbers in a given range, including range boundaries.
                 
                const multiplyNumbersFromRange = (LowerRange, UpperRange) => {
                    let i = LowerRange;
                    let multiplication = 1;
                    while(i < = UpperRange) {
                      multiplication = multiplication * i;
                      i++;
                    }
                    return multiplication; 
                    };