
Darya Shelekhova
Junior Frontend Developer
Contacts
- Phone: +7 911 176 64 94
- E-mail: shelldary@yandex.ru
- Telegram: @shelldarya
Education
- University: Herzen University, Information Technology in Design, student
- Courses:
- The Modern JavaScript Tutorial, in progress
- RS School Course "JavaScript/Front-end. Stage 0", student
Language
- English - Pre-Intermediate
- Russian - Native
About me
I gained skills in design and illustration during my studies in university but my goal has always been to combine creative and technical principles. I am convinced that I can successfully fulfill myself as a Frontend Developer and this is where I begin.
The road will master the going.
Skills
- HTML5, CSS3
- JavaScript Basics
- Git, GitHub
- Adobe Photoshop, Illustrator
- Figma
Code
function evenOrOdd(number)
{
if (number%2)
return 'Odd';
else
return 'Even';
}