About Me
I am 23 years old, I work as an aviation engineer. A year ago I became interested in front-end development and I want to try myself in this field. I am interested in constantly developing, learning something new. I don't see great prospects in my job, so I decided to study programming, which is developing at a tremendous speed.
My strengths
- Perseverance
- Curiosity
- Responsibility
- Sociability
- Stress tolerance
Skills
- HTML
- CSS
- JavaScript
- Git/GitHub
Code Examples
Repeat a given string str (first argument) for num times (second argument). Return an empty string if num is not a positive number. For the purpose of this challenge, do not use the built-in .repeat() method.
function repeatStringNumTimes(str, num) {
var accumulatedStr = "";
while (num > 0) {
accumulatedStr += str;
num--;
}
return accumulatedStr;
}
Education
- Graduated from the Belarusian State Aviation Academy with a degree in technical operation of aviation equipment (radio-electronic equipment).
- I took online courses at freeCodeCamp:
- Responsive Web Design
- JavaScript Algoritms and Data Structures
Languages
- Russian - native speaker.
- Belarussian - native speaker.
- English - A2 (B1 in process…).