Daria Imbireva

Daria Imbireva

Junior Frontend Developer

Contacts

Skills

  • HTML5
  • Core JavaScript
  • CSS3, Sass CSS preprocessor
  • Markdown markup language
  • Basic knowledge:
    • Git, GitHub
    • TypeScript
    • Webpack
    • ESLint
    • Figma

Education

Saint Petersburg State University of Veterinary Medicine, Master’s degree in Veterinary Medicine (2009-2014)

English

Pre-Intermediate (A2+)

Summary

I’m a vet and the largest part of my professional practice was connected with veterinary medicine of small animals like dogs and cats. I love animals but don’t want to be a vet anymore. That’s why I decided to change my career.

My goal is to become a Junior Front-End Developer. It’s an absolutely new area for me, but I’m highly motivated to learn and to work hard because it’s really interesting for me.

It’s important for me to do my work with high quality and in time.

I think I will work well in a team because my friends and colleagues say that I’m a friendly and responsible person.

Experience

Code

Head, Tail, Init and Last
const head = array => array[0];

const last = array => array[array.length - 1];

const tail = array => array.slice(1);

const init = array => array.slice(0, -1);