
Contacts
Skills
- HTML
- CSS/SASS
- JavaScript (Basic)
- Git/GitHub
- Figma
Education
-
KHARKIV NATIONAL UNIVERSITY OF RADIO ELECTRONICS
Metrology and measurement technology
-
SoftServe
HTML5/ CSS3/ JAVASCRIPT FUNDAMENTALS
-
UDEMY
Верстка и создание веб сайтов 2022 - Продвинутый уровень!
Valentyna
Ustimenko
Junior Front-End developer
About me
I like programming. It is fascinating and interesting. I have a main job, programming is a hobby for me. I have completed several training projects and now I would like to take part in the creation of a real JavaScript project. My goal is to learn a pure JavaScript at a good level and learn the React library. I will be glad to join the creation of open source projects. I would like to work under the guidance of an experienced developer to gain practical experience.
Languages
- Ukrainian - native speaker
- Russian - fluent
- English - B1 (B2 in process…)
Code example
function add(num1, num2) {
num1 = String(num1).split('');
num2 = String(num2).split('');
let newArr = [];
let result = '';
let diffLength = Math.abs(num1.length - num2.length);
for(let i = 0; i < diffLength; i++) {
if (num1.length < num2.length) {
num1.unshift(0);
} else if (num2.length < num1.length) {
num2.unshift(0);
}
}
for (let j = 0; j < num1.length; j++) {
newArr.push(+num1[j] + +num2[j]);
result = +newArr.join('');
}
return result;
}