Daria Demidova
Frontend developer

Education
Frontend developer
Moscow Financial and Industrial University «Synergy»
2024
React developer
YLab
2024
Frontend developer
ITGirls School
2023 - 2024
Web developer
Udemy
2023
Web developer
Stepik
2023
Ophthalmologist
Northern State Medical University
2012 - 2020
Skills
- HTML
- Pug
- CSS
- Tailwind CSS
- Bootstrap
- Sass
- JavaScript
- React
- Vue
- Git/GitHub
Languages
- Russian - native
- English - B1
Daria Demidova
Frontend developer
Summary
I am a frontend developer with a higher medical education, passionate about creating beautiful and functional web interfaces. My experience has taught me to be detail-oriented, adapt quickly, and perform well under pressure, which I successfully transferred to programming. In my work, I strive for professional growth and continuously seek new opportunities for development.
Experience
august 2023 - present
Project work
Frontend developer
- adaptive and cross-browser layout using the BEM methodology
- implementation of site functionality in JS
- writing user interface components in JSX
april 2024 - june 2024
Internship
Frontend developer
- worked in a team of developers using the Agile methodology
- implemented adaptive and cross-browser layout using a Figma layout
- implemented the functionality of the site in JS, namely: worked with modal windows, a form and its validation, as well as on compiling practical tasks in HTML and their validation
Code Example
function isPalindrome(str) {
let cleanedStr = str.toLowerCase().replace(/[^a-z0-9]/g, "");
let reversedStr = cleanedStr.split("").reverse().join("");
return cleanedStr === reversedStr;
}