My photo

Darya Shelekhova

Junior Frontend Developer

Contacts

Education

  • University: Herzen University, Information Technology in Design, student
  • Courses:

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';
}